diff --git a/README.md b/README.md
index 9a5a903fa..9194b28da 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ The 3D view in Design Studio is just a video stream from our hosted geometry eng
- WebSockets (via [KittyCAD TS client](https://github.com/KittyCAD/kittycad.ts))
- Code Editor
- [CodeMirror](https://codemirror.net/)
- - Custom WASM LSP Server
+ - [Custom WASM LSP Server](https://github.com/KittyCAD/modeling-app/tree/main/rust/kcl-lib/src/lsp/kcl)
- Modeling
- [KittyCAD TypeScript client](https://github.com/KittyCAD/kittycad.ts)
diff --git a/public/kcl-samples/README.md b/public/kcl-samples/README.md
index f36b9178c..852045308 100644
--- a/public/kcl-samples/README.md
+++ b/public/kcl-samples/README.md
@@ -55,8 +55,6 @@ When you submit a PR to add or modify KCL samples, images will be generated and
[](food-service-spatula/main.kcl)
#### [french-press](french-press/main.kcl) ([screenshot](screenshots/french-press.png))
[](french-press/main.kcl)
-#### [gear](gear/main.kcl) ([screenshot](screenshots/gear.png))
-[](gear/main.kcl)
#### [gear-rack](gear-rack/main.kcl) ([screenshot](screenshots/gear-rack.png))
[](gear-rack/main.kcl)
#### [gridfinity-baseplate](gridfinity-baseplate/main.kcl) ([screenshot](screenshots/gridfinity-baseplate.png))
@@ -67,6 +65,14 @@ When you submit a PR to add or modify KCL samples, images will be generated and
[](gridfinity-bins/main.kcl)
#### [gridfinity-bins-stacking-lip](gridfinity-bins-stacking-lip/main.kcl) ([screenshot](screenshots/gridfinity-bins-stacking-lip.png))
[](gridfinity-bins-stacking-lip/main.kcl)
+#### [helical-gear](helical-gear/main.kcl) ([screenshot](screenshots/helical-gear.png))
+[](helical-gear/main.kcl)
+#### [helical-planetary-gearset](helical-planetary-gearset/main.kcl) ([screenshot](screenshots/helical-planetary-gearset.png))
+[](helical-planetary-gearset/main.kcl)
+#### [herringbone-gear](herringbone-gear/main.kcl) ([screenshot](screenshots/herringbone-gear.png))
+[](herringbone-gear/main.kcl)
+#### [herringbone-planetary-gearset](herringbone-planetary-gearset/main.kcl) ([screenshot](screenshots/herringbone-planetary-gearset.png))
+[](herringbone-planetary-gearset/main.kcl)
#### [hex-nut](hex-nut/main.kcl) ([screenshot](screenshots/hex-nut.png))
[](hex-nut/main.kcl)
#### [i-beam](i-beam/main.kcl) ([screenshot](screenshots/i-beam.png))
@@ -101,6 +107,10 @@ When you submit a PR to add or modify KCL samples, images will be generated and
[](sheet-metal-bracket/main.kcl)
#### [socket-head-cap-screw](socket-head-cap-screw/main.kcl) ([screenshot](screenshots/socket-head-cap-screw.png))
[](socket-head-cap-screw/main.kcl)
+#### [spur-gear](spur-gear/main.kcl) ([screenshot](screenshots/spur-gear.png))
+[](spur-gear/main.kcl)
+#### [spur-reduction-gearset](spur-reduction-gearset/main.kcl) ([screenshot](screenshots/spur-reduction-gearset.png))
+[](spur-reduction-gearset/main.kcl)
#### [utility-sink](utility-sink/main.kcl) ([screenshot](screenshots/utility-sink.png))
[](utility-sink/main.kcl)
#### [walkie-talkie](walkie-talkie/main.kcl) ([screenshot](screenshots/walkie-talkie.png))
diff --git a/public/kcl-samples/gear/main.kcl b/public/kcl-samples/gear/main.kcl
deleted file mode 100644
index 0b0ebc88f..000000000
--- a/public/kcl-samples/gear/main.kcl
+++ /dev/null
@@ -1,112 +0,0 @@
-// Spur Gear
-// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.
-
-// Set units
-@settings(defaultLengthUnit = in, kclVersion = 1.0)
-
-// Define parameters
-nTeeth = 21
-module = 0.5
-pitchDiameter = module * nTeeth
-pressureAngle = 20
-addendum = module
-deddendum = 1.25 * module
-baseDiameter = pitchDiameter * cos(pressureAngle)
-tipDiameter = pitchDiameter + 2 * module
-gearHeight = 3
-
-// Interpolate points along the involute curve
-cmo = 101
-rs = map(
- [0..cmo],
- f = fn(@i) {
- return baseDiameter / 2 + i / cmo * (tipDiameter - baseDiameter) / 2
- },
-)
-
-// Calculate operating pressure angle
-angles = map(
- rs,
- f = fn(@r) {
- return units::toDegrees(acos(baseDiameter / 2 / r))
- },
-)
-
-// Calculate the involute function
-invas = map(
- angles,
- f = fn(@a) {
- return tan(a) - units::toRadians(a)
- },
-)
-
-// Map the involute curve
-xs = map(
- [0..cmo],
- f = fn(@i) {
- return rs[i] * cos(invas[i]: number(rad))
- },
-)
-
-ys = map(
- [0..cmo],
- f = fn(@i) {
- return rs[i] * sin(invas[i]: number(rad))
- },
-)
-
-// Extrude the gear body
-body = startSketchOn(XY)
- |> circle(center = [0, 0], radius = baseDiameter / 2)
- |> extrude(length = gearHeight)
-
-toothAngle = 360 / nTeeth / 1.5
-
-// Plot the involute curve
-fn leftInvolute(@i, accum) {
- j = 100 - i // iterate backwards
- return line(accum, endAbsolute = [xs[j], ys[j]])
-}
-
-fn rightInvolute(@i, accum) {
- x = rs[i] * cos(-toothAngle + units::toDegrees(atan(ys[i] / xs[i])))
- y = -rs[i] * sin(-toothAngle + units::toDegrees(atan(ys[i] / xs[i])))
- return line(accum, endAbsolute = [x, y])
-}
-
-// Draw gear teeth
-start = startSketchOn(XY)
- |> startProfile(at = [xs[101], ys[101]])
-teeth = reduce([0..100], initial = start, f = leftInvolute)
- |> arc(angleStart = 0, angleEnd = toothAngle, radius = baseDiameter / 2)
- |> reduce([1..101], initial = %, f = rightInvolute)
- |> close()
- |> extrude(length = gearHeight)
- |> patternCircular3d(
- axis = [0, 0, 1],
- center = [0, 0, 0],
- instances = nTeeth,
- arcDegrees = 360,
- rotateDuplicates = true,
- )
-
-// Define the constants of the keyway and the bore hole
-keywayWidth = 0.250
-keywayDepth = keywayWidth / 2
-holeDiam = 2
-holeRadius = 1
-startAngle = asin(keywayWidth / 2 / holeRadius)
-
-// Sketch the keyway and center hole and extrude
-keyWay = startSketchOn(body, face = END)
- |> startProfile(at = [
- holeRadius * cos(startAngle),
- holeRadius * sin(startAngle)
- ])
- |> xLine(length = keywayDepth)
- |> yLine(length = -keywayWidth)
- |> xLine(length = -keywayDepth)
- |> arc(angleStart = -1 * units::toDegrees(startAngle) + 360, angleEnd = 180, radius = holeRadius)
- |> arc(angleStart = 180, angleEnd = units::toDegrees(startAngle), radius = holeRadius)
- |> close()
- |> extrude(length = -gearHeight)
diff --git a/public/kcl-samples/helical-gear/main.kcl b/public/kcl-samples/helical-gear/main.kcl
new file mode 100644
index 000000000..52f20fcc4
--- /dev/null
+++ b/public/kcl-samples/helical-gear/main.kcl
@@ -0,0 +1,99 @@
+// Helical Gear
+// A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a helical gear
+fn helicalGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define the constants of the keyway and the bore hole
+ keywayWidth = 2
+ keywayDepth = keywayWidth / 2
+ holeDiam = 7
+ holeRadius = holeDiam / 2
+ startAngle = asin(keywayWidth / 2 / holeRadius)
+
+ // Sketch the keyway and center hole
+ holeWithKeyway = startSketchOn(XY)
+ |> startProfile(at = [
+ holeRadius * cos(startAngle),
+ holeRadius * sin(startAngle)
+ ])
+ |> xLine(length = keywayDepth)
+ |> yLine(length = -keywayWidth)
+ |> xLine(length = -keywayDepth)
+ |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius)
+ |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius)
+ |> close()
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn helicalGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ helicalGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ |> subtract2d(tool = holeWithKeyway)
+ return helicalGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = helicalGearSketch(offsetHeight = 0)
+
+ // Draw a rotated gear sketch on a middle interstitial plane
+ gearSketch002 = helicalGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a rotated gear sketch at the gear height offset plane
+ gearSketch003 = helicalGearSketch(offsetHeight = gearHeight)
+
+ // Loft each rotated gear sketch together to form a helical gear
+ helicalGear = loft([
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ])
+
+ return helicalGear
+}
+
+helicalGear(
+ nTeeth = 21,
+ module = 2,
+ pressureAngle = 20,
+ helixAngle = 35,
+ gearHeight = 7,
+)
diff --git a/public/kcl-samples/helical-planetary-gearset/main.kcl b/public/kcl-samples/helical-planetary-gearset/main.kcl
new file mode 100644
index 000000000..96c0908b8
--- /dev/null
+++ b/public/kcl-samples/helical-planetary-gearset/main.kcl
@@ -0,0 +1,197 @@
+// Helical Planetary Gearset
+// A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a helical gear
+fn helicalGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define the constants of the keyway and the bore hole
+ keywayWidth = 1
+ keywayDepth = keywayWidth / 2
+ holeDiam = 7
+ holeRadius = holeDiam / 2
+ startAngle = asin(keywayWidth / 2 / holeRadius)
+
+ // Sketch the keyway and center hole
+ holeWithKeyway = startSketchOn(XY)
+ |> startProfile(at = [
+ holeRadius * cos(startAngle),
+ holeRadius * sin(startAngle)
+ ])
+ |> xLine(length = keywayDepth)
+ |> yLine(length = -keywayWidth)
+ |> xLine(length = -keywayDepth)
+ |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius)
+ |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius)
+ |> close()
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn helicalGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ helicalGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ |> subtract2d(tool = holeWithKeyway)
+ return helicalGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = helicalGearSketch(offsetHeight = 0)
+
+ // Draw a rotated gear sketch on a middle interstitial plane
+ gearSketch002 = helicalGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a rotated gear sketch at the gear height offset plane
+ gearSketch003 = helicalGearSketch(offsetHeight = gearHeight)
+
+ // Loft each rotated gear sketch together to form a helical gear
+ helicalGear = loft([
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ])
+
+ return helicalGear
+}
+
+// Define a function to create a ring gear
+fn ringGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn ringGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ ringTeeth = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 200 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+
+ // Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body
+ ringGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> circle(center = [0, 0], radius = tipDiameter / 1.85)
+ |> subtract2d(tool = ringTeeth)
+ return ringGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = ringGearSketch(offsetHeight = 0)
+
+ // Draw a rotated gear sketch on a middle interstitial plane
+ gearSketch002 = ringGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a rotated gear sketch at the gear height offset plane
+ gearSketch003 = ringGearSketch(offsetHeight = gearHeight)
+
+ // Loft each rotated gear sketch together to form a ring gear
+ ringGear = loft([
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ])
+
+ return ringGear
+}
+
+// Create the outer ring gear for the planetary gearset
+ringGear(
+ nTeeth = 42,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = -25,
+ gearHeight = 5,
+)
+
+// Create a central sun gear using a small helical gear
+helicalGear(
+ nTeeth = 12,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = 25,
+ gearHeight = 5,
+)
+
+// Create the helical planet gears
+numPlanetGears = 3
+helicalGear(
+ nTeeth = 12,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = -25,
+ gearHeight = 5,
+ )
+ |> translate(y = (12 + 12) / 2 * 1.5 + 2.7)
+ |> patternCircular3d(
+ instances = numPlanetGears,
+ axis = [0, 0, 1],
+ center = [0, 0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = false,
+ )
diff --git a/public/kcl-samples/herringbone-gear/main.kcl b/public/kcl-samples/herringbone-gear/main.kcl
new file mode 100644
index 000000000..82a2b5534
--- /dev/null
+++ b/public/kcl-samples/herringbone-gear/main.kcl
@@ -0,0 +1,84 @@
+// Herringbone Gear
+// A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a herringbone gear
+fn herringboneGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn herringboneGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ herringboneGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ // Create a center hole with an 8mm diameter
+ |> subtract2d(tool = circle(center = [0, 0], radius = 4))
+ return herringboneGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = herringboneGearSketch(offsetHeight = 0)
+
+ // Draw a gear sketch that has been rotated by the helix angle
+ gearSketch002 = herringboneGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a gear sketch at the total gear height that reverses the angle direction
+ gearSketch003 = clone(gearSketch001)
+ |> translate(z = gearHeight)
+
+ // Loft each rotated gear sketch together to form a herringbone gear
+ herringboneGear = loft(
+ [
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ],
+ vDegree = 1,
+ )
+
+ return herringboneGear
+}
+
+herringboneGear(
+ nTeeth = 25,
+ module = 1,
+ pressureAngle = 14,
+ helixAngle = 40,
+ gearHeight = 8,
+)
diff --git a/public/kcl-samples/herringbone-planetary-gearset/main.kcl b/public/kcl-samples/herringbone-planetary-gearset/main.kcl
new file mode 100644
index 000000000..4fd110d14
--- /dev/null
+++ b/public/kcl-samples/herringbone-planetary-gearset/main.kcl
@@ -0,0 +1,186 @@
+// Herringbone Planetary Gearset
+// A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a herringbone gear
+fn herringboneGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn herringboneGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ herringboneGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ // Create a center hole with an 8mm diameter
+ |> subtract2d(tool = circle(center = [0, 0], radius = 4))
+ return herringboneGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = herringboneGearSketch(offsetHeight = 0)
+
+ // Draw a gear sketch that has been rotated by the helix angle
+ gearSketch002 = herringboneGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a gear sketch at the total gear height that reverses the angle direction
+ gearSketch003 = clone(gearSketch001)
+ |> translate(z = gearHeight)
+
+ // Loft each rotated gear sketch together to form a herringbone gear
+ herringboneGear = loft(
+ [
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ],
+ vDegree = 1,
+ )
+
+ return herringboneGear
+}
+
+// Define a function to create a ring gear
+fn ringGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define a function to create a rotated gear sketch on an offset plane
+ fn ringGearSketch(offsetHeight) {
+ // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height
+ helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2))
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ ringTeeth = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = helixCalc,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 220 / nTeeth + helixCalc, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)),
+ reverse = true,
+ )
+
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2))
+
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+
+ // Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body
+ ringGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight))
+ |> circle(center = [0, 0], radius = tipDiameter / 1.8)
+ |> subtract2d(tool = ringTeeth)
+ return ringGearSketch
+ }
+
+ // Draw a gear sketch on the base plane
+ gearSketch001 = ringGearSketch(offsetHeight = 0)
+
+ // Draw a rotated gear sketch on a middle interstitial plane
+ gearSketch002 = ringGearSketch(offsetHeight = gearHeight / 2)
+
+ // Draw a gear sketch at the total gear height that reverses the angle direction
+ gearSketch003 = clone(gearSketch001)
+ |> translate(z = gearHeight)
+
+ // Loft each rotated gear sketch together to form a ring gear
+ ringGear = loft(
+ [
+ gearSketch001,
+ gearSketch002,
+ gearSketch003
+ ],
+ vDegree = 1,
+ )
+
+ return ringGear
+}
+
+// Create the outer ring gear for the planetary gearset
+ringGear(
+ nTeeth = 58,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = -35,
+ gearHeight = 8,
+)
+
+// Create a central sun gear using a small herringbone gear
+herringboneGear(
+ nTeeth = 18,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = 35,
+ gearHeight = 8,
+)
+
+// Create the herringbone planet gears
+numPlanetGears = 4
+herringboneGear(
+ nTeeth = 18,
+ module = 1.5,
+ pressureAngle = 14,
+ helixAngle = -35,
+ gearHeight = 8,
+ )
+ |> translate(y = 18 * 1.5 + 1.95)
+ |> patternCircular3d(
+ instances = numPlanetGears,
+ axis = [0, 0, 1],
+ center = [0, 0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = false,
+ )
diff --git a/public/kcl-samples/manifest.json b/public/kcl-samples/manifest.json
index 41dc7a96d..48843d8e1 100644
--- a/public/kcl-samples/manifest.json
+++ b/public/kcl-samples/manifest.json
@@ -170,16 +170,6 @@
"main.kcl"
]
},
- {
- "file": "main.kcl",
- "pathFromProjectDirectoryToFirstFile": "gear/main.kcl",
- "multipleFiles": false,
- "title": "Spur Gear",
- "description": "A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.",
- "files": [
- "main.kcl"
- ]
- },
{
"file": "main.kcl",
"pathFromProjectDirectoryToFirstFile": "gear-rack/main.kcl",
@@ -230,6 +220,46 @@
"main.kcl"
]
},
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "helical-gear/main.kcl",
+ "multipleFiles": false,
+ "title": "Helical Gear",
+ "description": "A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears",
+ "files": [
+ "main.kcl"
+ ]
+ },
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "helical-planetary-gearset/main.kcl",
+ "multipleFiles": false,
+ "title": "Helical Planetary Gearset",
+ "description": "A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.",
+ "files": [
+ "main.kcl"
+ ]
+ },
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "herringbone-gear/main.kcl",
+ "multipleFiles": false,
+ "title": "Herringbone Gear",
+ "description": "A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning",
+ "files": [
+ "main.kcl"
+ ]
+ },
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "herringbone-planetary-gearset/main.kcl",
+ "multipleFiles": false,
+ "title": "Herringbone Planetary Gearset",
+ "description": "A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.",
+ "files": [
+ "main.kcl"
+ ]
+ },
{
"file": "main.kcl",
"pathFromProjectDirectoryToFirstFile": "hex-nut/main.kcl",
@@ -412,6 +442,26 @@
"main.kcl"
]
},
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "spur-gear/main.kcl",
+ "multipleFiles": false,
+ "title": "Spur Gear",
+ "description": "A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.",
+ "files": [
+ "main.kcl"
+ ]
+ },
+ {
+ "file": "main.kcl",
+ "pathFromProjectDirectoryToFirstFile": "spur-reduction-gearset/main.kcl",
+ "multipleFiles": false,
+ "title": "Spur Reduction Gearset",
+ "description": "A pair of spur gears meshed together, with an equal module and different number of teeth",
+ "files": [
+ "main.kcl"
+ ]
+ },
{
"file": "main.kcl",
"pathFromProjectDirectoryToFirstFile": "utility-sink/main.kcl",
diff --git a/public/kcl-samples/screenshots/helical-gear.png b/public/kcl-samples/screenshots/helical-gear.png
new file mode 100644
index 000000000..f19848805
Binary files /dev/null and b/public/kcl-samples/screenshots/helical-gear.png differ
diff --git a/public/kcl-samples/screenshots/helical-planetary-gearset.png b/public/kcl-samples/screenshots/helical-planetary-gearset.png
new file mode 100644
index 000000000..dacd1be22
Binary files /dev/null and b/public/kcl-samples/screenshots/helical-planetary-gearset.png differ
diff --git a/public/kcl-samples/screenshots/herringbone-gear.png b/public/kcl-samples/screenshots/herringbone-gear.png
new file mode 100644
index 000000000..2b2201dfd
Binary files /dev/null and b/public/kcl-samples/screenshots/herringbone-gear.png differ
diff --git a/public/kcl-samples/screenshots/herringbone-planetary-gearset.png b/public/kcl-samples/screenshots/herringbone-planetary-gearset.png
new file mode 100644
index 000000000..2fe244002
Binary files /dev/null and b/public/kcl-samples/screenshots/herringbone-planetary-gearset.png differ
diff --git a/public/kcl-samples/screenshots/spur-gear.png b/public/kcl-samples/screenshots/spur-gear.png
new file mode 100644
index 000000000..0746e497e
Binary files /dev/null and b/public/kcl-samples/screenshots/spur-gear.png differ
diff --git a/public/kcl-samples/screenshots/spur-reduction-gearset.png b/public/kcl-samples/screenshots/spur-reduction-gearset.png
new file mode 100644
index 000000000..1814a4c11
Binary files /dev/null and b/public/kcl-samples/screenshots/spur-reduction-gearset.png differ
diff --git a/public/kcl-samples/spur-gear/main.kcl b/public/kcl-samples/spur-gear/main.kcl
new file mode 100644
index 000000000..c27df0b84
--- /dev/null
+++ b/public/kcl-samples/spur-gear/main.kcl
@@ -0,0 +1,76 @@
+// Spur Gear
+// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a spur gear
+fn spurGear(nTeeth, module, pressureAngle, gearHeight) {
+ // Define gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Define the constants of the keyway and the bore hole
+ keywayWidth = 2
+ keywayDepth = keywayWidth / 2
+ holeDiam = 5
+ holeRadius = holeDiam / 2
+ startAngle = asin(keywayWidth / 2 / holeRadius)
+
+ // Sketch the keyway and center hole
+ holeWithKeyway = startSketchOn(XY)
+ |> startProfile(at = [
+ holeRadius * cos(startAngle),
+ holeRadius * sin(startAngle)
+ ])
+ |> xLine(length = keywayDepth)
+ |> yLine(length = -keywayWidth)
+ |> xLine(length = -keywayDepth)
+ |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius)
+ |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius)
+ |> close()
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ gearSketch = startSketchOn(XY)
+ |> startProfile(at = polar(angle = 0, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = 0,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -atan(segEndY(seg01) / segEndX(seg01)) - (180 / nTeeth),
+ reverse = true,
+ )
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth, length = baseDiameter / 2))
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ // Subtract the keyway sketch from the gear sketch
+ |> subtract2d(tool = holeWithKeyway)
+ // Extrude the gear to the specified height
+ |> extrude(length = gearHeight)
+
+ return gearSketch
+}
+
+spurGear(
+ nTeeth = 21,
+ module = 1.5,
+ pressureAngle = 14,
+ gearHeight = 6,
+)
diff --git a/public/kcl-samples/spur-reduction-gearset/main.kcl b/public/kcl-samples/spur-reduction-gearset/main.kcl
new file mode 100644
index 000000000..2904f9ceb
--- /dev/null
+++ b/public/kcl-samples/spur-reduction-gearset/main.kcl
@@ -0,0 +1,70 @@
+// Spur Reduction Gearset
+// A pair of spur gears meshed together, with an equal module and different number of teeth
+
+// Set units
+@settings(defaultLengthUnit = mm)
+
+// Define a function to create a spur gear
+fn spurGear(nTeeth, module, pressureAngle, gearHeight) {
+ // Calculate gear parameters
+ pitchDiameter = module * nTeeth
+ addendum = module
+ deddendum = 1.25 * module
+ baseDiameter = pitchDiameter * cos(pressureAngle)
+ tipDiameter = pitchDiameter + 2 * module
+
+ // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter
+ gearSketch = startSketchOn(XY)
+ |> startProfile(at = polar(angle = 0, length = baseDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = 0,
+ tag = $seg01,
+ )
+ |> line(endAbsolute = polar(angle = 160 / nTeeth, length = tipDiameter / 2))
+ |> involuteCircular(
+ startRadius = baseDiameter / 2,
+ endRadius = tipDiameter / 2,
+ angle = -atan(segEndY(seg01) / segEndX(seg01)) - (180 / nTeeth),
+ reverse = true,
+ )
+ // Position the end line of the sketch at the start of the next tooth
+ |> line(endAbsolute = polar(angle = 360 / nTeeth, length = baseDiameter / 2))
+ // Pattern the sketch about the center by the specified number of teeth, then close the sketch
+ |> patternCircular2d(
+ %,
+ instances = nTeeth,
+ center = [0, 0],
+ arcDegrees = 360,
+ rotateDuplicates = true,
+ )
+ |> close()
+ // Subtract a 10mm diameter center hole from the gear
+ |> subtract2d(tool = circle(center = [0, 0], radius = 5))
+ // Extrude the gear to the specified height
+ |> extrude(length = gearHeight)
+
+ return gearSketch
+}
+
+// Model a small gear
+spurGear(
+ nTeeth = 17,
+ module = 1.5,
+ pressureAngle = 14,
+ gearHeight = 9,
+)
+
+// Model a larger gear with the same module
+spurGear(
+ nTeeth = 51,
+ module = 1.5,
+ pressureAngle = 14,
+ gearHeight = 7,
+ )
+ // Translate the larger gear by the combined pitch radius of both gears, plus a small gap
+ |> translate(x = (51 + 17) / 2 * 1.5 + 1.3)
+
+ // Rotate the gear so that the teeth mesh but do not intersect
+ |> rotate(yaw = 3)
diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
index 42cedb342..613b65d92 100644
--- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
@@ -605,19 +605,19 @@ flowchart LR
84 --- 144
84 --- 234
87 --- 161
- 87 x--> 186
+ 87 x--> 187
87 --- 206
87 --- 249
89 --- 160
- 89 x--> 186
+ 89 x--> 187
89 --- 207
89 --- 250
91 --- 162
- 91 x--> 186
+ 91 x--> 187
91 --- 204
91 --- 252
93 --- 159
- 93 x--> 186
+ 93 x--> 187
93 --- 205
93 --- 251
119 --- 133
@@ -879,10 +879,10 @@ flowchart LR
200 <--x 185
201 <--x 185
202 <--x 185
- 204 <--x 187
- 205 <--x 187
- 206 <--x 187
- 207 <--x 187
+ 204 <--x 186
+ 205 <--x 186
+ 206 <--x 186
+ 207 <--x 186
219 <--x 188
220 <--x 188
221 <--x 188
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap
deleted file mode 100644
index 933e70986..000000000
--- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap
+++ /dev/null
@@ -1,4221 +0,0 @@
----
-source: kcl-lib/src/simulation_tests.rs
-description: Artifact commands gear.kcl
----
-[
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "edge_lines_visible",
- "hidden": false
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_visible",
- "object_id": "[uuid]",
- "hidden": true
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_visible",
- "object_id": "[uuid]",
- "hidden": true
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "make_plane",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0
- },
- "x_axis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0
- },
- "y_axis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0
- },
- "size": 60.0,
- "clobber": false,
- "hide": true
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "close_path",
- "path_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": 0.0,
- "z": 1.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "arc",
- "center": {
- "x": 0.0,
- "y": 0.0
- },
- "radius": 125.30801098180088,
- "start": {
- "unit": "degrees",
- "value": 0.0
- },
- "end": {
- "unit": "degrees",
- "value": 360.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "move_path_pen",
- "path": "[uuid]",
- "to": {
- "x": 125.30801098180088,
- "y": 0.0,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "start_path"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": 0.0,
- "z": 1.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 76.19999999999999,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_next_adjacent_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 145.596,
- "y": 8.5125,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 145.398,
- "y": 8.3788,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 145.1999,
- "y": 8.2459,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 145.0017,
- "y": 8.1139,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.8033,
- "y": 7.9828,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.6048,
- "y": 7.8524,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.4061,
- "y": 7.7229,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.2072,
- "y": 7.5942,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.0083,
- "y": 7.4664,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.8092,
- "y": 7.3393,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.6099,
- "y": 7.2132,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.4106,
- "y": 7.0879,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.211,
- "y": 6.9634,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.0114,
- "y": 6.8398,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.8116,
- "y": 6.717,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.6117,
- "y": 6.5951,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.4117,
- "y": 6.4741,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.2115,
- "y": 6.3539,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.0113,
- "y": 6.2346,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.8108,
- "y": 6.1161,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.6103,
- "y": 5.9985,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.4097,
- "y": 5.8818,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.2089,
- "y": 5.766,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.008,
- "y": 5.651,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.807,
- "y": 5.5369,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.6059,
- "y": 5.4237,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.4047,
- "y": 5.3114,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.2033,
- "y": 5.2,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.0019,
- "y": 5.0895,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.8003,
- "y": 4.9799,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.5987,
- "y": 4.8712,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.3969,
- "y": 4.7634,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.195,
- "y": 4.6565,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.9931,
- "y": 4.5506,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.791,
- "y": 4.4455,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.5888,
- "y": 4.3414,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.3866,
- "y": 4.2382,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.1842,
- "y": 4.1359,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.9817,
- "y": 4.0346,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.7792,
- "y": 3.9342,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.5766,
- "y": 3.8347,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.3738,
- "y": 3.7362,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.171,
- "y": 3.6387,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.9681,
- "y": 3.5421,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.7651,
- "y": 3.4465,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.562,
- "y": 3.3519,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.3589,
- "y": 3.2582,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.1556,
- "y": 3.1655,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.9523,
- "y": 3.0738,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.7489,
- "y": 2.9831,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.5454,
- "y": 2.8934,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.3419,
- "y": 2.8048,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.1383,
- "y": 2.7171,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.9346,
- "y": 2.6304,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.7308,
- "y": 2.5448,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.527,
- "y": 2.4603,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.3231,
- "y": 2.3767,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.1191,
- "y": 2.2942,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.9151,
- "y": 2.2128,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.711,
- "y": 2.1325,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.5069,
- "y": 2.0532,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.3027,
- "y": 1.975,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.0984,
- "y": 1.898,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.8941,
- "y": 1.822,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.6897,
- "y": 1.7472,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.4853,
- "y": 1.6735,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.2808,
- "y": 1.6009,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.0762,
- "y": 1.5295,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.8717,
- "y": 1.4593,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.667,
- "y": 1.3902,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.4623,
- "y": 1.3224,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.2576,
- "y": 1.2557,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.0529,
- "y": 1.1903,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.8481,
- "y": 1.1261,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.6432,
- "y": 1.0633,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.4383,
- "y": 1.0016,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.2334,
- "y": 0.9413,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.0284,
- "y": 0.8824,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.8234,
- "y": 0.8247,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.6184,
- "y": 0.7685,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.4134,
- "y": 0.7136,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.2083,
- "y": 0.6602,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.0032,
- "y": 0.6082,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.798,
- "y": 0.5578,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.5929,
- "y": 0.5088,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.3877,
- "y": 0.4615,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.1825,
- "y": 0.4158,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.9772,
- "y": 0.3717,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.772,
- "y": 0.3293,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.5667,
- "y": 0.2888,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.3614,
- "y": 0.2501,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.1561,
- "y": 0.2133,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.9508,
- "y": 0.1786,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.7455,
- "y": 0.1461,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.5402,
- "y": 0.1158,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.3348,
- "y": 0.088,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.1295,
- "y": 0.0629,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.9241,
- "y": 0.0408,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.7187,
- "y": 0.0222,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.5134,
- "y": 0.0078,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.308,
- "y": 0.0,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 123.0263,
- "y": 24.8623,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 123.2305,
- "y": 24.8889,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 123.4354,
- "y": 24.9113,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 123.6411,
- "y": 24.9304,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 123.8473,
- "y": 24.9465,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 124.0541,
- "y": 24.9599,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 124.2614,
- "y": 24.9709,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 124.4691,
- "y": 24.9797,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 124.6772,
- "y": 24.9864,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 124.8857,
- "y": 24.991,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.0946,
- "y": 24.9938,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.3038,
- "y": 24.9947,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.5134,
- "y": 24.9939,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.7233,
- "y": 24.9914,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 125.9335,
- "y": 24.9872,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.144,
- "y": 24.9814,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.3548,
- "y": 24.9741,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.5659,
- "y": 24.9653,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.7772,
- "y": 24.955,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 126.9888,
- "y": 24.9433,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.2007,
- "y": 24.9302,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.4128,
- "y": 24.9156,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.6251,
- "y": 24.8998,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 127.8377,
- "y": 24.8826,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.0505,
- "y": 24.8641,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.2636,
- "y": 24.8443,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.4768,
- "y": 24.8232,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.6903,
- "y": 24.8009,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 128.9039,
- "y": 24.7774,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.1178,
- "y": 24.7526,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.3319,
- "y": 24.7267,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.5461,
- "y": 24.6995,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.7606,
- "y": 24.6712,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 129.9752,
- "y": 24.6418,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.19,
- "y": 24.6112,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.405,
- "y": 24.5794,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.6201,
- "y": 24.5466,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 130.8355,
- "y": 24.5126,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.051,
- "y": 24.4775,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.2666,
- "y": 24.4414,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.4824,
- "y": 24.4041,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.6984,
- "y": 24.3658,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 131.9145,
- "y": 24.3264,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.1307,
- "y": 24.286,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.3472,
- "y": 24.2445,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.5637,
- "y": 24.202,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.7804,
- "y": 24.1585,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 132.9972,
- "y": 24.1139,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.2142,
- "y": 24.0683,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.4312,
- "y": 24.0217,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.6484,
- "y": 23.9741,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 133.8658,
- "y": 23.9255,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.0832,
- "y": 23.876,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.3008,
- "y": 23.8254,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.5185,
- "y": 23.7738,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.7363,
- "y": 23.7213,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 134.9542,
- "y": 23.6678,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.1722,
- "y": 23.6134,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.3904,
- "y": 23.5579,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.6086,
- "y": 23.5016,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 135.8269,
- "y": 23.4443,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.0453,
- "y": 23.386,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.2639,
- "y": 23.3268,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.4825,
- "y": 23.2666,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.7012,
- "y": 23.2056,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 136.92,
- "y": 23.1435,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.1389,
- "y": 23.0806,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.3578,
- "y": 23.0168,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.5769,
- "y": 22.952,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 137.796,
- "y": 22.8863,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.0152,
- "y": 22.8197,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.2345,
- "y": 22.7522,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.4538,
- "y": 22.6838,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.6732,
- "y": 22.6145,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 138.8927,
- "y": 22.5443,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.1123,
- "y": 22.4732,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.3319,
- "y": 22.4012,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.5516,
- "y": 22.3284,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.7713,
- "y": 22.2546,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 139.9911,
- "y": 22.18,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.211,
- "y": 22.1044,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.4309,
- "y": 22.028,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.6508,
- "y": 21.9508,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 140.8708,
- "y": 21.8726,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.0909,
- "y": 21.7936,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.311,
- "y": 21.7137,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.5311,
- "y": 21.633,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.7513,
- "y": 21.5514,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 141.9715,
- "y": 21.4689,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.1918,
- "y": 21.3856,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.4121,
- "y": 21.3014,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.6324,
- "y": 21.2164,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 142.8527,
- "y": 21.1305,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.0731,
- "y": 21.0438,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.2935,
- "y": 20.9562,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.514,
- "y": 20.8677,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.7344,
- "y": 20.7785,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 143.9549,
- "y": 20.6884,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.1754,
- "y": 20.5974,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.3959,
- "y": 20.5056,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 144.6164,
- "y": 20.413,
- "z": 0.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "make_plane",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0
- },
- "x_axis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0
- },
- "y_axis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0
- },
- "size": 60.0,
- "clobber": false,
- "hide": true
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": 0.0,
- "z": 1.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "move_path_pen",
- "path": "[uuid]",
- "to": {
- "x": 145.79380266899716,
- "y": 8.646941847468915,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "start_path"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "arc",
- "center": {
- "x": -0.0,
- "y": -0.0
- },
- "radius": 125.30801098180088,
- "start": {
- "unit": "degrees",
- "value": 0.0
- },
- "end": {
- "unit": "degrees",
- "value": 11.428571428571429
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "close_path",
- "path_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": 0.0,
- "z": 1.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 76.19999999999999,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "entity_circular_pattern",
- "entity_id": "[uuid]",
- "axis": {
- "x": 0.0,
- "y": 0.0,
- "z": 1.0
- },
- "center": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0
- },
- "num_repetitions": 20,
- "arc_degrees": 360.0,
- "rotate_duplicates": true
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "move_path_pen",
- "path": "[uuid]",
- "to": {
- "x": 25.200781237890226,
- "y": 3.175,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "start_path"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 3.175,
- "y": 0.0,
- "z": 0.0
- },
- "relative": true
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": 0.0,
- "y": -6.35,
- "z": 0.0
- },
- "relative": true
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "line",
- "end": {
- "x": -3.175,
- "y": 0.0,
- "z": 0.0
- },
- "relative": true
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "arc",
- "center": {
- "x": 0.0,
- "y": 0.0
- },
- "radius": 25.4,
- "start": {
- "unit": "degrees",
- "value": 352.8192442185417
- },
- "end": {
- "unit": "degrees",
- "value": 180.0
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extend_path",
- "path": "[uuid]",
- "segment": {
- "type": "arc",
- "center": {
- "x": 0.0,
- "y": 0.0
- },
- "radius": 25.4,
- "start": {
- "unit": "degrees",
- "value": 180.0
- },
- "end": {
- "unit": "degrees",
- "value": 7.180755781458282
- },
- "relative": false
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "close_path",
- "path_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -76.19999999999999,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_all_edge_faces",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
- "object_id": "[uuid]",
- "edge_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_next_adjacent_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_next_adjacent_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_next_adjacent_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_next_adjacent_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
- }
- }
-]
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md
deleted file mode 100644
index fe6f6329d..000000000
--- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md
+++ /dev/null
@@ -1,526 +0,0 @@
-```mermaid
-flowchart LR
- subgraph path4 [Path]
- 4["Path
[1436, 1486, 0]"]
- 7["Segment
[1436, 1486, 0]"]
- 219[Solid2d]
- end
- subgraph path5 [Path]
- 5["Path
[1969, 2006, 0]"]
- 8["Segment
[1655, 1696, 0]"]
- 9["Segment
[1655, 1696, 0]"]
- 10["Segment
[1655, 1696, 0]"]
- 11["Segment
[1655, 1696, 0]"]
- 12["Segment
[1655, 1696, 0]"]
- 13["Segment
[1655, 1696, 0]"]
- 14["Segment
[1655, 1696, 0]"]
- 15["Segment
[1655, 1696, 0]"]
- 16["Segment
[1655, 1696, 0]"]
- 17["Segment
[1655, 1696, 0]"]
- 18["Segment
[1655, 1696, 0]"]
- 19["Segment
[1655, 1696, 0]"]
- 20["Segment
[1655, 1696, 0]"]
- 21["Segment
[1655, 1696, 0]"]
- 22["Segment
[1655, 1696, 0]"]
- 23["Segment
[1655, 1696, 0]"]
- 24["Segment
[1655, 1696, 0]"]
- 25["Segment
[1655, 1696, 0]"]
- 26["Segment
[1655, 1696, 0]"]
- 27["Segment
[1655, 1696, 0]"]
- 28["Segment
[1655, 1696, 0]"]
- 29["Segment
[1655, 1696, 0]"]
- 30["Segment
[1655, 1696, 0]"]
- 31["Segment
[1655, 1696, 0]"]
- 32["Segment
[1655, 1696, 0]"]
- 33["Segment
[1655, 1696, 0]"]
- 34["Segment
[1655, 1696, 0]"]
- 35["Segment
[1655, 1696, 0]"]
- 36["Segment
[1655, 1696, 0]"]
- 37["Segment
[1655, 1696, 0]"]
- 38["Segment
[1655, 1696, 0]"]
- 39["Segment
[1655, 1696, 0]"]
- 40["Segment
[1655, 1696, 0]"]
- 41["Segment
[1655, 1696, 0]"]
- 42["Segment
[1655, 1696, 0]"]
- 43["Segment
[1655, 1696, 0]"]
- 44["Segment
[1655, 1696, 0]"]
- 45["Segment
[1655, 1696, 0]"]
- 46["Segment
[1655, 1696, 0]"]
- 47["Segment
[1655, 1696, 0]"]
- 48["Segment
[1655, 1696, 0]"]
- 49["Segment
[1655, 1696, 0]"]
- 50["Segment
[1655, 1696, 0]"]
- 51["Segment
[1655, 1696, 0]"]
- 52["Segment
[1655, 1696, 0]"]
- 53["Segment
[1655, 1696, 0]"]
- 54["Segment
[1655, 1696, 0]"]
- 55["Segment
[1655, 1696, 0]"]
- 56["Segment
[1655, 1696, 0]"]
- 57["Segment
[1655, 1696, 0]"]
- 58["Segment
[1655, 1696, 0]"]
- 59["Segment
[1655, 1696, 0]"]
- 60["Segment
[1655, 1696, 0]"]
- 61["Segment
[1655, 1696, 0]"]
- 62["Segment
[1655, 1696, 0]"]
- 63["Segment
[1655, 1696, 0]"]
- 64["Segment
[1655, 1696, 0]"]
- 65["Segment
[1655, 1696, 0]"]
- 66["Segment
[1655, 1696, 0]"]
- 67["Segment
[1655, 1696, 0]"]
- 68["Segment
[1655, 1696, 0]"]
- 69["Segment
[1655, 1696, 0]"]
- 70["Segment
[1655, 1696, 0]"]
- 71["Segment
[1655, 1696, 0]"]
- 72["Segment
[1655, 1696, 0]"]
- 73["Segment
[1655, 1696, 0]"]
- 74["Segment
[1655, 1696, 0]"]
- 75["Segment
[1655, 1696, 0]"]
- 76["Segment
[1655, 1696, 0]"]
- 77["Segment
[1655, 1696, 0]"]
- 78["Segment
[1655, 1696, 0]"]
- 79["Segment
[1655, 1696, 0]"]
- 80["Segment
[1655, 1696, 0]"]
- 81["Segment
[1655, 1696, 0]"]
- 82["Segment
[1655, 1696, 0]"]
- 83["Segment
[1655, 1696, 0]"]
- 84["Segment
[1655, 1696, 0]"]
- 85["Segment
[1655, 1696, 0]"]
- 86["Segment
[1655, 1696, 0]"]
- 87["Segment
[1655, 1696, 0]"]
- 88["Segment
[1655, 1696, 0]"]
- 89["Segment
[1655, 1696, 0]"]
- 90["Segment
[1655, 1696, 0]"]
- 91["Segment
[1655, 1696, 0]"]
- 92["Segment
[1655, 1696, 0]"]
- 93["Segment
[1655, 1696, 0]"]
- 94["Segment
[1655, 1696, 0]"]
- 95["Segment
[1655, 1696, 0]"]
- 96["Segment
[1655, 1696, 0]"]
- 97["Segment
[1655, 1696, 0]"]
- 98["Segment
[1655, 1696, 0]"]
- 99["Segment
[1655, 1696, 0]"]
- 100["Segment
[1655, 1696, 0]"]
- 101["Segment
[1655, 1696, 0]"]
- 102["Segment
[1655, 1696, 0]"]
- 103["Segment
[1655, 1696, 0]"]
- 104["Segment
[1655, 1696, 0]"]
- 105["Segment
[1655, 1696, 0]"]
- 106["Segment
[1655, 1696, 0]"]
- 107["Segment
[1655, 1696, 0]"]
- 108["Segment
[1655, 1696, 0]"]
- 109["Segment
[1882, 1915, 0]"]
- 110["Segment
[1882, 1915, 0]"]
- 111["Segment
[1882, 1915, 0]"]
- 112["Segment
[1882, 1915, 0]"]
- 113["Segment
[1882, 1915, 0]"]
- 114["Segment
[1882, 1915, 0]"]
- 115["Segment
[1882, 1915, 0]"]
- 116["Segment
[1882, 1915, 0]"]
- 117["Segment
[1882, 1915, 0]"]
- 118["Segment
[1882, 1915, 0]"]
- 119["Segment
[1882, 1915, 0]"]
- 120["Segment
[1882, 1915, 0]"]
- 121["Segment
[1882, 1915, 0]"]
- 122["Segment
[1882, 1915, 0]"]
- 123["Segment
[1882, 1915, 0]"]
- 124["Segment
[1882, 1915, 0]"]
- 125["Segment
[1882, 1915, 0]"]
- 126["Segment
[1882, 1915, 0]"]
- 127["Segment
[1882, 1915, 0]"]
- 128["Segment
[1882, 1915, 0]"]
- 129["Segment
[1882, 1915, 0]"]
- 130["Segment
[1882, 1915, 0]"]
- 131["Segment
[1882, 1915, 0]"]
- 132["Segment
[1882, 1915, 0]"]
- 133["Segment
[1882, 1915, 0]"]
- 134["Segment
[1882, 1915, 0]"]
- 135["Segment
[1882, 1915, 0]"]
- 136["Segment
[1882, 1915, 0]"]
- 137["Segment
[1882, 1915, 0]"]
- 138["Segment
[1882, 1915, 0]"]
- 139["Segment
[1882, 1915, 0]"]
- 140["Segment
[1882, 1915, 0]"]
- 141["Segment
[1882, 1915, 0]"]
- 142["Segment
[1882, 1915, 0]"]
- 143["Segment
[1882, 1915, 0]"]
- 144["Segment
[1882, 1915, 0]"]
- 145["Segment
[1882, 1915, 0]"]
- 146["Segment
[1882, 1915, 0]"]
- 147["Segment
[1882, 1915, 0]"]
- 148["Segment
[1882, 1915, 0]"]
- 149["Segment
[1882, 1915, 0]"]
- 150["Segment
[1882, 1915, 0]"]
- 151["Segment
[1882, 1915, 0]"]
- 152["Segment
[1882, 1915, 0]"]
- 153["Segment
[1882, 1915, 0]"]
- 154["Segment
[1882, 1915, 0]"]
- 155["Segment
[1882, 1915, 0]"]
- 156["Segment
[1882, 1915, 0]"]
- 157["Segment
[1882, 1915, 0]"]
- 158["Segment
[1882, 1915, 0]"]
- 159["Segment
[1882, 1915, 0]"]
- 160["Segment
[1882, 1915, 0]"]
- 161["Segment
[1882, 1915, 0]"]
- 162["Segment
[1882, 1915, 0]"]
- 163["Segment
[1882, 1915, 0]"]
- 164["Segment
[1882, 1915, 0]"]
- 165["Segment
[1882, 1915, 0]"]
- 166["Segment
[1882, 1915, 0]"]
- 167["Segment
[1882, 1915, 0]"]
- 168["Segment
[1882, 1915, 0]"]
- 169["Segment
[1882, 1915, 0]"]
- 170["Segment
[1882, 1915, 0]"]
- 171["Segment
[1882, 1915, 0]"]
- 172["Segment
[1882, 1915, 0]"]
- 173["Segment
[1882, 1915, 0]"]
- 174["Segment
[1882, 1915, 0]"]
- 175["Segment
[1882, 1915, 0]"]
- 176["Segment
[1882, 1915, 0]"]
- 177["Segment
[1882, 1915, 0]"]
- 178["Segment
[1882, 1915, 0]"]
- 179["Segment
[1882, 1915, 0]"]
- 180["Segment
[1882, 1915, 0]"]
- 181["Segment
[1882, 1915, 0]"]
- 182["Segment
[1882, 1915, 0]"]
- 183["Segment
[1882, 1915, 0]"]
- 184["Segment
[1882, 1915, 0]"]
- 185["Segment
[1882, 1915, 0]"]
- 186["Segment
[1882, 1915, 0]"]
- 187["Segment
[1882, 1915, 0]"]
- 188["Segment
[1882, 1915, 0]"]
- 189["Segment
[1882, 1915, 0]"]
- 190["Segment
[1882, 1915, 0]"]
- 191["Segment
[1882, 1915, 0]"]
- 192["Segment
[1882, 1915, 0]"]
- 193["Segment
[1882, 1915, 0]"]
- 194["Segment
[1882, 1915, 0]"]
- 195["Segment
[1882, 1915, 0]"]
- 196["Segment
[1882, 1915, 0]"]
- 197["Segment
[1882, 1915, 0]"]
- 198["Segment
[1882, 1915, 0]"]
- 199["Segment
[1882, 1915, 0]"]
- 200["Segment
[1882, 1915, 0]"]
- 201["Segment
[1882, 1915, 0]"]
- 202["Segment
[1882, 1915, 0]"]
- 203["Segment
[1882, 1915, 0]"]
- 204["Segment
[1882, 1915, 0]"]
- 205["Segment
[1882, 1915, 0]"]
- 206["Segment
[1882, 1915, 0]"]
- 207["Segment
[1882, 1915, 0]"]
- 208["Segment
[1882, 1915, 0]"]
- 209["Segment
[1882, 1915, 0]"]
- 210["Segment
[2072, 2141, 0]"]
- 211["Segment
[2201, 2208, 0]"]
- 218[Solid2d]
- end
- subgraph path6 [Path]
- 6["Path
[2689, 2789, 0]"]
- 212["Segment
[2795, 2822, 0]"]
- 213["Segment
[2828, 2856, 0]"]
- 214["Segment
[2862, 2890, 0]"]
- 215["Segment
[2896, 2990, 0]"]
- 216["Segment
[2996, 3079, 0]"]
- 217["Segment
[3085, 3092, 0]"]
- 220[Solid2d]
- end
- 1["Plane
[1413, 1430, 0]"]
- 2["Plane
[1946, 1963, 0]"]
- 3["StartSketchOnFace
[2652, 2683, 0]"]
- 221["Sweep Extrusion
[1492, 1520, 0]"]
- 222["Sweep Extrusion
[2214, 2242, 0]"]
- 223["Sweep Extrusion
[3098, 3127, 0]"]
- 224[Wall]
- 225[Wall]
- 226[Wall]
- 227[Wall]
- 228[Wall]
- 229["Cap Start"]
- 230["Cap End"]
- 231["SweepEdge Opposite"]
- 232["SweepEdge Opposite"]
- 233["SweepEdge Opposite"]
- 234["SweepEdge Opposite"]
- 235["SweepEdge Opposite"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Adjacent"]
- 238["SweepEdge Adjacent"]
- 239["SweepEdge Adjacent"]
- 240["SweepEdge Adjacent"]
- 1 --- 4
- 2 --- 5
- 230 x--> 3
- 4 --- 7
- 4 --- 219
- 4 ---- 221
- 5 --- 8
- 5 --- 9
- 5 --- 10
- 5 --- 11
- 5 --- 12
- 5 --- 13
- 5 --- 14
- 5 --- 15
- 5 --- 16
- 5 --- 17
- 5 --- 18
- 5 --- 19
- 5 --- 20
- 5 --- 21
- 5 --- 22
- 5 --- 23
- 5 --- 24
- 5 --- 25
- 5 --- 26
- 5 --- 27
- 5 --- 28
- 5 --- 29
- 5 --- 30
- 5 --- 31
- 5 --- 32
- 5 --- 33
- 5 --- 34
- 5 --- 35
- 5 --- 36
- 5 --- 37
- 5 --- 38
- 5 --- 39
- 5 --- 40
- 5 --- 41
- 5 --- 42
- 5 --- 43
- 5 --- 44
- 5 --- 45
- 5 --- 46
- 5 --- 47
- 5 --- 48
- 5 --- 49
- 5 --- 50
- 5 --- 51
- 5 --- 52
- 5 --- 53
- 5 --- 54
- 5 --- 55
- 5 --- 56
- 5 --- 57
- 5 --- 58
- 5 --- 59
- 5 --- 60
- 5 --- 61
- 5 --- 62
- 5 --- 63
- 5 --- 64
- 5 --- 65
- 5 --- 66
- 5 --- 67
- 5 --- 68
- 5 --- 69
- 5 --- 70
- 5 --- 71
- 5 --- 72
- 5 --- 73
- 5 --- 74
- 5 --- 75
- 5 --- 76
- 5 --- 77
- 5 --- 78
- 5 --- 79
- 5 --- 80
- 5 --- 81
- 5 --- 82
- 5 --- 83
- 5 --- 84
- 5 --- 85
- 5 --- 86
- 5 --- 87
- 5 --- 88
- 5 --- 89
- 5 --- 90
- 5 --- 91
- 5 --- 92
- 5 --- 93
- 5 --- 94
- 5 --- 95
- 5 --- 96
- 5 --- 97
- 5 --- 98
- 5 --- 99
- 5 --- 100
- 5 --- 101
- 5 --- 102
- 5 --- 103
- 5 --- 104
- 5 --- 105
- 5 --- 106
- 5 --- 107
- 5 --- 108
- 5 --- 109
- 5 --- 110
- 5 --- 111
- 5 --- 112
- 5 --- 113
- 5 --- 114
- 5 --- 115
- 5 --- 116
- 5 --- 117
- 5 --- 118
- 5 --- 119
- 5 --- 120
- 5 --- 121
- 5 --- 122
- 5 --- 123
- 5 --- 124
- 5 --- 125
- 5 --- 126
- 5 --- 127
- 5 --- 128
- 5 --- 129
- 5 --- 130
- 5 --- 131
- 5 --- 132
- 5 --- 133
- 5 --- 134
- 5 --- 135
- 5 --- 136
- 5 --- 137
- 5 --- 138
- 5 --- 139
- 5 --- 140
- 5 --- 141
- 5 --- 142
- 5 --- 143
- 5 --- 144
- 5 --- 145
- 5 --- 146
- 5 --- 147
- 5 --- 148
- 5 --- 149
- 5 --- 150
- 5 --- 151
- 5 --- 152
- 5 --- 153
- 5 --- 154
- 5 --- 155
- 5 --- 156
- 5 --- 157
- 5 --- 158
- 5 --- 159
- 5 --- 160
- 5 --- 161
- 5 --- 162
- 5 --- 163
- 5 --- 164
- 5 --- 165
- 5 --- 166
- 5 --- 167
- 5 --- 168
- 5 --- 169
- 5 --- 170
- 5 --- 171
- 5 --- 172
- 5 --- 173
- 5 --- 174
- 5 --- 175
- 5 --- 176
- 5 --- 177
- 5 --- 178
- 5 --- 179
- 5 --- 180
- 5 --- 181
- 5 --- 182
- 5 --- 183
- 5 --- 184
- 5 --- 185
- 5 --- 186
- 5 --- 187
- 5 --- 188
- 5 --- 189
- 5 --- 190
- 5 --- 191
- 5 --- 192
- 5 --- 193
- 5 --- 194
- 5 --- 195
- 5 --- 196
- 5 --- 197
- 5 --- 198
- 5 --- 199
- 5 --- 200
- 5 --- 201
- 5 --- 202
- 5 --- 203
- 5 --- 204
- 5 --- 205
- 5 --- 206
- 5 --- 207
- 5 --- 208
- 5 --- 209
- 5 --- 210
- 5 --- 211
- 5 --- 218
- 5 ---- 222
- 6 --- 212
- 6 --- 213
- 6 --- 214
- 6 --- 215
- 6 --- 216
- 6 --- 217
- 6 --- 220
- 6 ---- 223
- 230 --- 6
- 7 --- 224
- 7 x--> 229
- 7 --- 231
- 7 --- 236
- 212 --- 227
- 212 x--> 230
- 212 --- 232
- 212 --- 238
- 213 --- 228
- 213 x--> 230
- 213 --- 235
- 213 --- 239
- 214 --- 225
- 214 x--> 230
- 214 --- 234
- 214 --- 240
- 216 --- 226
- 216 x--> 230
- 216 --- 233
- 216 --- 237
- 221 --- 224
- 221 --- 229
- 221 --- 230
- 221 --- 231
- 221 --- 236
- 223 --- 225
- 223 --- 226
- 223 --- 227
- 223 --- 228
- 223 --- 232
- 223 --- 233
- 223 --- 234
- 223 --- 235
- 223 --- 237
- 223 --- 238
- 223 --- 239
- 223 --- 240
- 231 <--x 224
- 236 <--x 224
- 234 <--x 225
- 239 <--x 225
- 240 <--x 225
- 233 <--x 226
- 237 <--x 226
- 240 <--x 226
- 232 <--x 227
- 237 <--x 227
- 238 <--x 227
- 235 <--x 228
- 238 <--x 228
- 239 <--x 228
- 232 <--x 229
- 233 <--x 229
- 234 <--x 229
- 235 <--x 229
- 231 <--x 230
-```
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/gear/ast.snap
deleted file mode 100644
index 8cce222be..000000000
--- a/rust/kcl-lib/tests/kcl_samples/gear/ast.snap
+++ /dev/null
@@ -1,4842 +0,0 @@
----
-source: kcl-lib/src/simulation_tests.rs
-description: Result of parsing gear.kcl
----
-{
- "Ok": {
- "body": [
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "nTeeth",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "21",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 21.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "// Define parameters"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "module",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "0.5",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.5,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "pitchDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "module",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "*",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "nTeeth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "pressureAngle",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "20",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 20.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "addendum",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "module",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "deddendum",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "raw": "1.25",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.25,
- "suffix": "None"
- }
- },
- "operator": "*",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "module",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "pitchDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cos",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "pressureAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "tipDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "pitchDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "+",
- "right": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "operator": "*",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "module",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "gearHeight",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "3",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 3.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "cmo",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "101",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 101.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Interpolate points along the involute curve"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "body": {
- "body": [
- {
- "argument": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "+",
- "right": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cmo",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "*",
- "right": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "tipDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "-",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "map",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "endElement": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cmo",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "endInclusive": true,
- "start": 0,
- "startElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- "type": "ArrayRangeExpression",
- "type": "ArrayRangeExpression"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "angles",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "body": {
- "body": [
- {
- "argument": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "acos",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "/",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "r",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- }
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "r",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "map",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Calculate operating pressure angle"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "invas",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "body": {
- "body": [
- {
- "argument": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "tan",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "a",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "operator": "-",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toRadians",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "a",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "a",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "map",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "angles",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Calculate the involute function"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "xs",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "body": {
- "body": [
- {
- "argument": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cos",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "expr": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "invas",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "start": 0,
- "ty": {
- "Rad": null,
- "commentStart": 0,
- "end": 0,
- "p_type": "Number",
- "start": 0,
- "type": "Primitive"
- },
- "type": "AscribedExpression",
- "type": "AscribedExpression"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "map",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "endElement": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cmo",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "endInclusive": true,
- "start": 0,
- "startElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- "type": "ArrayRangeExpression",
- "type": "ArrayRangeExpression"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Map the involute curve"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "ys",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "body": {
- "body": [
- {
- "argument": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "sin",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "expr": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "invas",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "start": 0,
- "ty": {
- "Rad": null,
- "commentStart": 0,
- "end": 0,
- "p_type": "Number",
- "start": 0,
- "type": "Primitive"
- },
- "type": "AscribedExpression",
- "type": "AscribedExpression"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "map",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "endElement": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cmo",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "endInclusive": true,
- "start": 0,
- "startElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- "type": "ArrayRangeExpression",
- "type": "ArrayRangeExpression"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "body",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": [
- {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startSketchOn",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "XY",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "center",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "radius",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "circle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "gearHeight",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "extrude",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "PipeExpression",
- "type": "PipeExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Extrude the gear body"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "toothAngle",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "raw": "360",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 360.0,
- "suffix": "None"
- }
- },
- "operator": "/",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "nTeeth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "1.5",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.5,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "leftInvolute",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": {
- "body": [
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "j",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "raw": "100",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 100.0,
- "suffix": "None"
- }
- },
- "operator": "-",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "argument": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "endAbsolute",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "xs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "j",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "ys",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "j",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "line",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "accum",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "nonCodeMeta": {
- "nonCodeNodes": {
- "0": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "inlineComment",
- "value": "iterate backwards",
- "style": "line"
- }
- }
- ]
- },
- "startNodes": []
- },
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- },
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "accum",
- "start": 0,
- "type": "Identifier"
- }
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "fn",
- "preComments": [
- "",
- "",
- "// Plot the involute curve"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "rightInvolute",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": {
- "body": [
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "x",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cos",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "argument": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toothAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- },
- "operator": "+",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "atan",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "ys",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "xs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "y",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "argument": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "rs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "sin",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "argument": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toothAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- },
- "operator": "+",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "atan",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "ys",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "computed": true,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "xs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "argument": {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "endAbsolute",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "x",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "y",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "line",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "accum",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "ReturnStatement",
- "type": "ReturnStatement"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0
- },
- "commentStart": 0,
- "end": 0,
- "params": [
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "i",
- "start": 0,
- "type": "Identifier"
- },
- "labeled": false
- },
- {
- "type": "Parameter",
- "identifier": {
- "commentStart": 0,
- "end": 0,
- "name": "accum",
- "start": 0,
- "type": "Identifier"
- }
- }
- ],
- "start": 0,
- "type": "FunctionExpression",
- "type": "FunctionExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "fn",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "start",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": [
- {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startSketchOn",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "XY",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "at",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "computed": false,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "xs",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "raw": "101",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 101.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- },
- {
- "commentStart": 0,
- "computed": false,
- "end": 0,
- "object": {
- "commentStart": 0,
- "end": 0,
- "name": "ys",
- "start": 0,
- "type": "Identifier",
- "type": "Identifier"
- },
- "property": {
- "commentStart": 0,
- "end": 0,
- "raw": "101",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 101.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "MemberExpression",
- "type": "MemberExpression"
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startProfile",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "PipeExpression",
- "type": "PipeExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Draw gear teeth"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "teeth",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": [
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "initial",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "start",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "leftInvolute",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "reduce",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "endElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "100",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 100.0,
- "suffix": "None"
- }
- },
- "endInclusive": true,
- "start": 0,
- "startElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- "type": "ArrayRangeExpression",
- "type": "ArrayRangeExpression"
- }
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleStart",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleEnd",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toothAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "radius",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "baseDiameter",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "arc",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "initial",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "PipeSubstitution",
- "type": "PipeSubstitution"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "f",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "rightInvolute",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "reduce",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "endElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "101",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 101.0,
- "suffix": "None"
- }
- },
- "endInclusive": true,
- "start": 0,
- "startElement": {
- "commentStart": 0,
- "end": 0,
- "raw": "1",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.0,
- "suffix": "None"
- }
- },
- "type": "ArrayRangeExpression",
- "type": "ArrayRangeExpression"
- }
- },
- {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "close",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "gearHeight",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "extrude",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "axis",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "raw": "1",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.0,
- "suffix": "None"
- }
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "center",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "raw": "0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.0,
- "suffix": "None"
- }
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "instances",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "nTeeth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "arcDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "raw": "360",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 360.0,
- "suffix": "None"
- }
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "rotateDuplicates",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "raw": "true",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": true
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "patternCircular3d",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- }
- ],
- "commentStart": 0,
- "end": 0,
- "nonCodeMeta": {
- "nonCodeNodes": {
- "5": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "newLineBlockComment",
- "value": "Define the constants of the keyway and the bore hole",
- "style": "line"
- }
- }
- ]
- },
- "startNodes": []
- },
- "start": 0,
- "type": "PipeExpression",
- "type": "PipeExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayWidth",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "0.250",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 0.25,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayDepth",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayWidth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "holeDiam",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "commentStart": 0,
- "end": 0,
- "raw": "1",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "startAngle",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "asin",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayWidth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "/",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "2",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 2.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "/",
- "right": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- },
- {
- "commentStart": 0,
- "declaration": {
- "commentStart": 0,
- "end": 0,
- "id": {
- "commentStart": 0,
- "end": 0,
- "name": "keyWay",
- "start": 0,
- "type": "Identifier"
- },
- "init": {
- "body": [
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "face",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "END",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startSketchOn",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "body",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "at",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "elements": [
- {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "cos",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- {
- "commentStart": 0,
- "end": 0,
- "left": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "sin",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- ],
- "end": 0,
- "start": 0,
- "type": "ArrayExpression",
- "type": "ArrayExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startProfile",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayDepth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "xLine",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "argument": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayWidth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "yLine",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "argument": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "keywayDepth",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "xLine",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleStart",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "commentStart": 0,
- "end": 0,
- "left": {
- "argument": {
- "commentStart": 0,
- "end": 0,
- "raw": "1",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.0,
- "suffix": "None"
- }
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- },
- "operator": "*",
- "right": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- },
- "operator": "+",
- "right": {
- "commentStart": 0,
- "end": 0,
- "raw": "360",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 360.0,
- "suffix": "None"
- }
- },
- "start": 0,
- "type": "BinaryExpression",
- "type": "BinaryExpression"
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleEnd",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "raw": "180",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 180.0,
- "suffix": "None"
- }
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "radius",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "arc",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleStart",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "commentStart": 0,
- "end": 0,
- "raw": "180",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 180.0,
- "suffix": "None"
- }
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "angleEnd",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "toDegrees",
- "start": 0,
- "type": "Identifier"
- },
- "path": [
- {
- "commentStart": 0,
- "end": 0,
- "name": "units",
- "start": 0,
- "type": "Identifier"
- }
- ],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "startAngle",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- },
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "radius",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "holeRadius",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "arc",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "close",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- },
- {
- "arguments": [
- {
- "type": "LabeledArg",
- "label": {
- "commentStart": 0,
- "end": 0,
- "name": "length",
- "start": 0,
- "type": "Identifier"
- },
- "arg": {
- "argument": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "gearHeight",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "operator": "-",
- "start": 0,
- "type": "UnaryExpression",
- "type": "UnaryExpression"
- }
- }
- ],
- "callee": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "extrude",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name"
- },
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "CallExpressionKw",
- "type": "CallExpressionKw",
- "unlabeled": null
- }
- ],
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "PipeExpression",
- "type": "PipeExpression"
- },
- "start": 0,
- "type": "VariableDeclarator"
- },
- "end": 0,
- "kind": "const",
- "preComments": [
- "",
- "",
- "// Sketch the keyway and center hole and extrude"
- ],
- "start": 0,
- "type": "VariableDeclaration",
- "type": "VariableDeclaration"
- }
- ],
- "commentStart": 0,
- "end": 0,
- "innerAttrs": [
- {
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "settings",
- "start": 0,
- "type": "Identifier"
- },
- "preComments": [
- "// Spur Gear",
- "// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.",
- "",
- "",
- "// Set units"
- ],
- "properties": [
- {
- "commentStart": 0,
- "end": 0,
- "key": {
- "commentStart": 0,
- "end": 0,
- "name": "defaultLengthUnit",
- "start": 0,
- "type": "Identifier"
- },
- "start": 0,
- "type": "ObjectProperty",
- "value": {
- "abs_path": false,
- "commentStart": 0,
- "end": 0,
- "name": {
- "commentStart": 0,
- "end": 0,
- "name": "in",
- "start": 0,
- "type": "Identifier"
- },
- "path": [],
- "start": 0,
- "type": "Name",
- "type": "Name"
- }
- },
- {
- "commentStart": 0,
- "end": 0,
- "key": {
- "commentStart": 0,
- "end": 0,
- "name": "kclVersion",
- "start": 0,
- "type": "Identifier"
- },
- "start": 0,
- "type": "ObjectProperty",
- "value": {
- "commentStart": 0,
- "end": 0,
- "raw": "1.0",
- "start": 0,
- "type": "Literal",
- "type": "Literal",
- "value": {
- "value": 1.0,
- "suffix": "None"
- }
- }
- }
- ],
- "start": 0,
- "type": "Annotation"
- }
- ],
- "nonCodeMeta": {
- "nonCodeNodes": {
- "13": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "newLine"
- }
- }
- ],
- "15": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "newLine"
- }
- }
- ],
- "17": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "newLine"
- }
- }
- ]
- },
- "startNodes": [
- {
- "commentStart": 0,
- "end": 0,
- "start": 0,
- "type": "NonCodeNode",
- "value": {
- "type": "newLine"
- }
- }
- ]
- },
- "start": 0
- }
-}
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/gear/ops.snap
deleted file mode 100644
index 8c9979df9..000000000
--- a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap
+++ /dev/null
@@ -1,32760 +0,0 @@
----
-source: kcl-lib/src/simulation_tests.rs
-description: Operations executed gear.kcl
----
-[
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 31.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 32.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 33.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 34.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 35.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 36.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 37.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 38.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 39.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 40.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 41.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 42.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 43.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 44.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 45.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 46.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 47.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 48.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 49.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 50.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 51.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 52.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 53.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 54.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 55.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 56.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 57.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 58.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 59.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 60.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 61.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 62.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 63.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 64.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 65.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 66.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 67.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 68.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 69.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 70.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 71.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 72.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 73.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 74.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 75.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 76.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 77.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 78.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 79.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 80.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 81.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 82.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 83.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 84.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 85.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 86.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 87.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 88.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 89.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 90.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 91.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 92.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 93.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 94.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 95.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 96.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 97.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 98.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 99.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 100.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 101.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9334,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9415,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9496,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9576,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9657,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9738,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9819,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.99,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.9981,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0062,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0142,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0223,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0304,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0385,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0466,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0547,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0628,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0708,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0789,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.087,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0951,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1032,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1113,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1193,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1274,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1355,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1436,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1517,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1598,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1679,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1759,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.184,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.1921,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2002,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2083,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2164,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2245,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2325,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2406,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2487,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2568,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2649,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.273,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2811,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2891,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.2972,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3053,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3134,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3215,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3296,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3377,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3457,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3538,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3619,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.37,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3781,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3862,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.3942,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4023,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4104,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4185,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4266,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4347,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4428,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4508,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4589,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.467,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4751,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4832,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4913,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.4994,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5074,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5155,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5236,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5317,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5398,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5479,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.556,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.564,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5721,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5802,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5883,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.5964,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6045,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6126,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6206,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6287,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6368,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6449,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.653,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6611,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6691,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6772,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6853,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.6934,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7015,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7096,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7177,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7257,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7338,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.7419,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.75,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0572,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0809,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.099,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1142,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1276,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1397,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1508,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1611,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1707,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1798,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1885,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1967,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2046,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2122,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2195,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2265,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2334,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.24,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2464,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2526,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2587,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2646,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2704,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.276,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2815,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2869,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2922,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.2973,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3024,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3074,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3122,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.317,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3217,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3264,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3309,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3354,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3398,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3441,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3484,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3526,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3568,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3608,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3649,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3689,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3728,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3767,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3805,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3843,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.388,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3917,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3953,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.3989,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4025,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.406,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4095,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.413,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4164,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4197,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4231,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4264,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4296,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4329,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4361,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4424,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4455,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4486,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4516,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4547,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4577,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4606,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4636,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4665,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4694,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4723,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4751,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4779,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4807,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4835,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4863,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.489,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4917,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4944,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4971,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.4997,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5049,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5075,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5126,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5152,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5177,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5202,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5251,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5275,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5299,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5324,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5347,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5371,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.5395,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.2781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.6327,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.67,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.5427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.31,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.6377,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.2278,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.3031,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.7987,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.2713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.7237,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.1581,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.5764,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.9802,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.3708,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.7492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.1166,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.4737,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.8213,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.16,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.4905,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.8132,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.1286,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.4372,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.7393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0353,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.3255,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.6101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.8895,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.1639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.4335,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.6985,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.9591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.2156,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.468,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.7165,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.9613,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.2026,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.4404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.6748,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.906,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.1341,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.3592,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.5814,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.8007,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0174,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.2313,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.4427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.6516,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0621,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.2639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.4635,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.6608,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.8561,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.2404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.4296,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.6168,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.8022,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.9858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.1675,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.3475,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.5258,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.7024,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.8774,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0508,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.2226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.3928,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.5616,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.7289,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.8947,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.2221,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.3837,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.544,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.703,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.8607,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0171,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.1723,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.3263,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.479,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.6306,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.9302,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0783,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.2254,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.3713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.5162,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.66,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.8028,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.9445,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0853,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.225,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.3638,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.5016,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.6385,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.7744,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.9094,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.2781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.6327,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.67,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.5427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.31,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.6377,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.2278,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.3031,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.7987,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.2713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.7237,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.1581,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.5764,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.9802,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.3708,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.7492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.1166,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.4737,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.8213,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.16,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.4905,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.8132,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.1286,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.4372,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.7393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0353,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.3255,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.6101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.8895,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.1639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.4335,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.6985,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.9591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.2156,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.468,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.7165,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.9613,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.2026,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.4404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.6748,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.906,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.1341,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.3592,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.5814,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.8007,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0174,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.2313,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.4427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.6516,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0621,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.2639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.4635,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.6608,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.8561,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.2404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.4296,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.6168,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.8022,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.9858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.1675,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.3475,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.5258,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.7024,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.8774,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0508,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.2226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.3928,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.5616,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.7289,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.8947,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.2221,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.3837,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.544,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.703,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.8607,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0171,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.1723,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.3263,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.479,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.6306,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.9302,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0783,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.2254,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.3713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.5162,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.66,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.8028,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.9445,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0853,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.225,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.3638,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.5016,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.6385,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.7744,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toRadians",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.9094,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 31.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 32.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 33.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 34.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 35.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 36.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 37.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 38.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 39.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 40.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 41.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 42.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 43.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 44.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 45.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 46.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 47.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 48.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 49.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 50.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 51.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 52.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 53.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 54.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 55.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 56.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 57.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 58.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 59.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 60.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 61.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 62.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 63.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 64.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 65.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 66.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 67.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 68.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 69.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 70.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 71.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 72.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 73.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 74.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 75.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 76.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 77.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 78.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 79.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 80.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 81.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 82.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 83.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 84.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 85.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 86.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 87.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 88.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 89.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 90.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 91.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 92.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 93.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 94.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 95.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 96.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 97.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 98.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 99.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 100.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 101.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 31.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 32.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 33.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 34.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 35.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 36.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 37.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 38.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 39.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 40.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 41.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 42.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 43.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 44.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 45.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 46.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 47.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 48.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 49.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 50.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 51.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 52.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 53.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 54.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 55.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 56.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 57.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 58.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 59.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 60.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 61.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 62.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 63.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 64.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 65.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 66.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 67.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 68.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 69.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 70.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 71.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 72.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 73.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 74.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 75.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 76.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 77.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 78.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 79.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 80.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 81.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 82.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 83.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 84.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 85.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 86.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 87.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 88.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 89.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 90.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 91.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 92.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 93.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 94.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 95.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 96.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 97.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 98.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 99.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 100.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 101.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "labeledArgs": {},
- "name": "startSketchOn",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Plane",
- "artifact_id": "[uuid]"
- },
- "sourceRange": []
- }
- },
- {
- "labeledArgs": {
- "length": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- }
- },
- "name": "extrude",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0001,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0002,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0003,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0005,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0007,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0009,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0012,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0014,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0017,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.002,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0026,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0029,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0032,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0036,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.004,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0043,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0047,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0051,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0055,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0059,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0064,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0068,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0072,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0077,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0081,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0086,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0091,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0096,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0106,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0111,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0116,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0121,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0126,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0132,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0137,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0143,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0148,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0154,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0159,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0165,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0171,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0177,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0183,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0189,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0195,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0201,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0207,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0213,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.022,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0232,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0239,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0245,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0252,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0259,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0265,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0272,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0279,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0285,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0292,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0299,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0306,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0313,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.032,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0327,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0334,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0342,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0349,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0356,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0363,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0371,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0378,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0386,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0401,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0408,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0416,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0423,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0431,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0439,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0446,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0454,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0462,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.047,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0478,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0486,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0494,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0502,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.051,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0518,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0526,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0534,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0542,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0551,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0559,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0567,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0576,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0584,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0592,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0001,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0002,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0003,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0005,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0007,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0009,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0012,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0014,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0017,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.002,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0026,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0029,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0032,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0036,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.004,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0043,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0047,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0051,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0055,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0059,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0064,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0068,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0072,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0077,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0081,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0086,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0091,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0096,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0106,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0111,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0116,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0121,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0126,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0132,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0137,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0143,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0148,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0154,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0159,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0165,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0171,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0177,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0183,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0189,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0195,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0201,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0207,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0213,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.022,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0232,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0239,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0245,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0252,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0259,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0265,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0272,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0279,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0285,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0292,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0299,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0306,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0313,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.032,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0327,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0334,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0342,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0349,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0356,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0363,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0371,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0378,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0386,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0401,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0408,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0416,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0423,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0431,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0439,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0446,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0454,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0462,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.047,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0478,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0486,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0494,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0502,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.051,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0518,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0526,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0534,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0542,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0551,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0559,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0567,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0576,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0584,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0592,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "labeledArgs": {},
- "name": "startSketchOn",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Plane",
- "artifact_id": "[uuid]"
- },
- "sourceRange": []
- }
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 31.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 32.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 33.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 34.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 35.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 36.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 37.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 38.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 39.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 40.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 41.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 42.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 43.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 44.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 45.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 46.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 47.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 48.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 49.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 50.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 51.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 52.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 53.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 54.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 55.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 56.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 57.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 58.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 59.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 60.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 61.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 62.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 63.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 64.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 65.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 66.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 67.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 68.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 69.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 70.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 71.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 72.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 73.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 74.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 75.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 76.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 77.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 78.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 79.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 80.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 81.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 82.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 83.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 84.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 85.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 86.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 87.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 88.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 89.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 90.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 91.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 92.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 93.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 94.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 95.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 96.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 97.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 98.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 99.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 100.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 4.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 5.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 6.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 7.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 8.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 9.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 10.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 11.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 12.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 13.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 14.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 15.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 16.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 17.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 18.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 19.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 22.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 23.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 24.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 25.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 26.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 27.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 28.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 29.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 30.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 31.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 32.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 33.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 34.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 35.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 36.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 37.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 38.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 39.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 40.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 41.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 42.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 43.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 44.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 45.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 46.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 47.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 48.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 49.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 50.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 51.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 52.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 53.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 54.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 55.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 56.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 57.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 58.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 59.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 60.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 61.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 62.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 63.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 64.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 65.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 66.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 67.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 68.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 69.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 70.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 71.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 72.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 73.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 74.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 75.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 76.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 77.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 78.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 79.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 80.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 81.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 82.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 83.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 84.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 85.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 86.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 87.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 88.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 89.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 90.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 91.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 92.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 93.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 94.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 95.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 96.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 97.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 98.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 99.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 100.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": null,
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 101.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {
- "accum": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- }
- },
- "sourceRange": []
- },
- {
- "labeledArgs": {
- "length": {
- "value": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- }
- },
- "name": "extrude",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- },
- {
- "labeledArgs": {
- "arcDegrees": {
- "value": {
- "type": "Number",
- "value": 360.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "axis": {
- "value": {
- "type": "Array",
- "value": [
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- }
- ]
- },
- "sourceRange": []
- },
- "center": {
- "value": {
- "type": "Array",
- "value": [
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- }
- ]
- },
- "sourceRange": []
- },
- "instances": {
- "value": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- },
- "rotateDuplicates": {
- "value": {
- "type": "Bool",
- "value": true
- },
- "sourceRange": []
- }
- },
- "name": "patternCircular3d",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Solid",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- },
- {
- "labeledArgs": {
- "face": {
- "value": {
- "type": "String",
- "value": "end"
- },
- "sourceRange": []
- }
- },
- "name": "startSketchOn",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Solid",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1253,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "type": "GroupBegin",
- "group": {
- "type": "FunctionCall",
- "name": "units::toDegrees",
- "functionSourceRange": [],
- "unlabeledArg": {
- "value": {
- "type": "Number",
- "value": 0.1253,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "sourceRange": []
- },
- "labeledArgs": {}
- },
- "sourceRange": []
- },
- {
- "labeledArgs": {
- "length": {
- "value": {
- "type": "Number",
- "value": -3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "sourceRange": []
- }
- },
- "name": "extrude",
- "sourceRange": [],
- "type": "StdLibCall",
- "unlabeledArg": {
- "value": {
- "type": "Sketch",
- "value": {
- "artifactId": "[uuid]"
- }
- },
- "sourceRange": []
- }
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- },
- {
- "type": "GroupEnd"
- }
-]
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap
deleted file mode 100644
index 7f4d87e83..000000000
--- a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap
+++ /dev/null
@@ -1,89454 +0,0 @@
----
-source: kcl-lib/src/simulation_tests.rs
-description: Variables in memory after executing gear.kcl
----
-{
- "addendum": {
- "type": "Number",
- "value": 0.5,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "angles": {
- "type": "HomArray",
- "value": [
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 3.2781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 4.6327,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 5.67,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 6.5427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 7.31,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 8.0023,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 8.6377,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 9.2278,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 9.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 10.3031,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 10.7987,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 11.2713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 11.7237,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 12.1581,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 12.5764,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 12.9802,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 13.3708,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 13.7492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 14.1166,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 14.4737,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 14.8213,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 15.16,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 15.4905,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 15.8132,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 16.1286,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 16.4372,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 16.7393,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 17.0353,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 17.3255,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 17.6101,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 17.8895,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 18.1639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 18.4335,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 18.6985,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 18.9591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 19.2156,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 19.468,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 19.7165,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 19.9613,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 20.2026,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 20.4404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 20.6748,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 20.906,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 21.1341,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 21.3592,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 21.5814,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 21.8007,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 22.0174,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 22.2313,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 22.4427,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 22.6516,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 22.858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 23.0621,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 23.2639,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 23.4635,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 23.6608,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 23.8561,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.0492,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.2404,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.4296,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.6168,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.8022,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 24.9858,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 25.1675,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 25.3475,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 25.5258,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 25.7024,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 25.8774,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.0508,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.2226,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.3928,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.5616,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.7289,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 26.8947,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.0591,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.2221,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.3837,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.544,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.703,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 27.8607,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.0171,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.1723,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.3263,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.479,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.6306,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.781,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 28.9302,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.0783,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.2254,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.3713,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.5162,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.66,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.8028,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 29.9445,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.0853,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.225,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.3638,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.5016,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.6385,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.7744,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- },
- {
- "type": "Number",
- "value": 30.9094,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Degrees"
- }
- }
- ]
- },
- "baseDiameter": {
- "type": "Number",
- "value": 9.8668,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "body": {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudeArc"
- }
- ],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- 0.0,
- 0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "Circle",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 4.9334,
- 0.0
- ],
- "to": [
- 4.9334,
- 0.0
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": "[uuid]",
- "endCapId": "[uuid]",
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- "cmo": {
- "type": "Number",
- "value": 101.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "deddendum": {
- "type": "Number",
- "value": 0.625,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "gearHeight": {
- "type": "Number",
- "value": 3.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "holeDiam": {
- "type": "Number",
- "value": 2.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "holeRadius": {
- "type": "Number",
- "value": 1.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "invas": {
- "type": "HomArray",
- "value": [
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0001,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0002,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0003,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0005,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0007,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0009,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0012,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0014,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0017,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.002,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0023,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0026,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0029,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0032,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0036,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.004,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0043,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0047,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0051,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0055,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0059,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0064,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0068,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0072,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0077,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0081,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0086,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0091,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0096,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0101,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0106,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0111,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0116,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0121,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0126,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0132,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0137,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0143,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0148,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0154,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0159,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0165,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0171,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0177,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0183,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0189,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0195,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0201,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0207,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0213,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.022,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0226,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0232,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0239,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0245,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0252,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0259,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0265,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0272,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0279,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0285,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0292,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0299,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0306,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0313,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.032,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0327,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0334,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0342,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0349,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0356,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0363,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0371,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0378,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0386,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0393,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0401,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0408,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0416,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0423,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0431,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0439,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0446,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0454,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0462,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.047,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0478,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0486,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0494,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0502,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.051,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0518,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0526,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0534,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0542,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0551,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0559,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0567,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0576,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0584,
- "ty": {
- "type": "Unknown"
- }
- },
- {
- "type": "Number",
- "value": 0.0592,
- "ty": {
- "type": "Unknown"
- }
- }
- ]
- },
- "keyWay": {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudePlane"
- },
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudePlane"
- },
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudePlane"
- },
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudeArc"
- }
- ],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 0.9922,
- 0.125
- ],
- "tag": null,
- "to": [
- 1.1172,
- 0.125
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 1.1172,
- 0.125
- ],
- "tag": null,
- "to": [
- 1.1172,
- -0.125
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 1.1172,
- -0.125
- ],
- "tag": null,
- "to": [
- 0.9922,
- -0.125
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": false,
- "center": [
- 0.0,
- 0.0
- ],
- "from": [
- 0.9922,
- -0.125
- ],
- "radius": 1.0,
- "tag": null,
- "to": [
- -1.0,
- 0.0
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": false,
- "center": [
- 0.0,
- 0.0
- ],
- "from": [
- -1.0,
- 0.0
- ],
- "radius": 1.0,
- "tag": null,
- "to": [
- 0.9922,
- 0.125
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 0.9922,
- 0.125
- ],
- "tag": null,
- "to": [
- 0.9922,
- 0.125
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "type": "face",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": "end",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "solid": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [
- {
- "faceId": "[uuid]",
- "id": "[uuid]",
- "sourceRange": [],
- "tag": null,
- "type": "extrudeArc"
- }
- ],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- 0.0,
- 0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "Circle",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 4.9334,
- 0.0
- ],
- "to": [
- 4.9334,
- 0.0
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": "[uuid]",
- "endCapId": "[uuid]",
- "units": {
- "type": "Inches"
- },
- "sectional": false
- },
- "units": {
- "type": "Inches"
- }
- },
- "start": {
- "from": [
- 0.9922,
- 0.125
- ],
- "to": [
- 0.9922,
- 0.125
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": -3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- "keywayDepth": {
- "type": "Number",
- "value": 0.125,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "keywayWidth": {
- "type": "Number",
- "value": 0.25,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "leftInvolute": {
- "type": "Function",
- "value": null
- },
- "module": {
- "type": "Number",
- "value": 0.5,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "nTeeth": {
- "type": "Number",
- "value": 21.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "pitchDiameter": {
- "type": "Number",
- "value": 10.5,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "pressureAngle": {
- "type": "Number",
- "value": 20.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "rightInvolute": {
- "type": "Function",
- "value": null
- },
- "rs": {
- "type": "HomArray",
- "value": [
- {
- "type": "Number",
- "value": 4.9334,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9415,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9496,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9576,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9657,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9738,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9819,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.99,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9981,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0062,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0142,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0223,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0304,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0385,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0466,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0547,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0628,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0708,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0789,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.087,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0951,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1032,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1113,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1193,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1274,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1355,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1436,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1517,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1598,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1679,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1759,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.184,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1921,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2002,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2083,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2164,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2245,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2325,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2406,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2487,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2568,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2649,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.273,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2811,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2891,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2972,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3053,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3134,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3215,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3296,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3377,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3457,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3538,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3619,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.37,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3781,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3862,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3942,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4023,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4104,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4185,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4266,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4347,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4428,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4508,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4589,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.467,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4751,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4832,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4913,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4994,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5074,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5155,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5236,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5317,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5398,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5479,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.556,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.564,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5721,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5802,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5883,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5964,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6045,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6126,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6206,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6287,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6368,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6449,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.653,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6611,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6691,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6772,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6853,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6934,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7015,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7096,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7177,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7257,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7338,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7419,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.75,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- }
- ]
- },
- "start": {
- "type": "Sketch",
- "value": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- }
- },
- "startAngle": {
- "type": "Number",
- "value": 0.1253,
- "ty": {
- "type": "Known",
- "type": "Angle",
- "type": "Radians"
- }
- },
- "teeth": {
- "type": "HomArray",
- "value": [
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- },
- {
- "type": "Solid",
- "value": {
- "type": "Solid",
- "id": "[uuid]",
- "artifactId": "[uuid]",
- "value": [],
- "sketch": {
- "type": "Sketch",
- "id": "[uuid]",
- "paths": [
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7399,
- 0.3404
- ],
- "tag": null,
- "to": [
- 5.7321,
- 0.3351
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7321,
- 0.3351
- ],
- "tag": null,
- "to": [
- 5.7243,
- 0.3299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7243,
- 0.3299
- ],
- "tag": null,
- "to": [
- 5.7165,
- 0.3246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7165,
- 0.3246
- ],
- "tag": null,
- "to": [
- 5.7087,
- 0.3194
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7087,
- 0.3194
- ],
- "tag": null,
- "to": [
- 5.7009,
- 0.3143
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.7009,
- 0.3143
- ],
- "tag": null,
- "to": [
- 5.6931,
- 0.3091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6931,
- 0.3091
- ],
- "tag": null,
- "to": [
- 5.6853,
- 0.3041
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6853,
- 0.3041
- ],
- "tag": null,
- "to": [
- 5.6775,
- 0.299
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6775,
- 0.299
- ],
- "tag": null,
- "to": [
- 5.6696,
- 0.294
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6696,
- 0.294
- ],
- "tag": null,
- "to": [
- 5.6618,
- 0.289
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6618,
- 0.289
- ],
- "tag": null,
- "to": [
- 5.6539,
- 0.284
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6539,
- 0.284
- ],
- "tag": null,
- "to": [
- 5.6461,
- 0.279
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6461,
- 0.279
- ],
- "tag": null,
- "to": [
- 5.6382,
- 0.2741
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6382,
- 0.2741
- ],
- "tag": null,
- "to": [
- 5.6304,
- 0.2693
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6304,
- 0.2693
- ],
- "tag": null,
- "to": [
- 5.6225,
- 0.2644
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6225,
- 0.2644
- ],
- "tag": null,
- "to": [
- 5.6146,
- 0.2597
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6146,
- 0.2597
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.2549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.2549
- ],
- "tag": null,
- "to": [
- 5.5989,
- 0.2502
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5989,
- 0.2502
- ],
- "tag": null,
- "to": [
- 5.591,
- 0.2455
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.591,
- 0.2455
- ],
- "tag": null,
- "to": [
- 5.5831,
- 0.2408
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5831,
- 0.2408
- ],
- "tag": null,
- "to": [
- 5.5752,
- 0.2362
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5752,
- 0.2362
- ],
- "tag": null,
- "to": [
- 5.5673,
- 0.2316
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5673,
- 0.2316
- ],
- "tag": null,
- "to": [
- 5.5594,
- 0.227
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5594,
- 0.227
- ],
- "tag": null,
- "to": [
- 5.5515,
- 0.2225
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5515,
- 0.2225
- ],
- "tag": null,
- "to": [
- 5.5436,
- 0.218
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5436,
- 0.218
- ],
- "tag": null,
- "to": [
- 5.5357,
- 0.2135
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5357,
- 0.2135
- ],
- "tag": null,
- "to": [
- 5.5277,
- 0.2091
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5277,
- 0.2091
- ],
- "tag": null,
- "to": [
- 5.5198,
- 0.2047
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5198,
- 0.2047
- ],
- "tag": null,
- "to": [
- 5.5119,
- 0.2004
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5119,
- 0.2004
- ],
- "tag": null,
- "to": [
- 5.504,
- 0.1961
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.504,
- 0.1961
- ],
- "tag": null,
- "to": [
- 5.496,
- 0.1918
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.496,
- 0.1918
- ],
- "tag": null,
- "to": [
- 5.4881,
- 0.1875
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4881,
- 0.1875
- ],
- "tag": null,
- "to": [
- 5.4801,
- 0.1833
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4801,
- 0.1833
- ],
- "tag": null,
- "to": [
- 5.4722,
- 0.1792
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4722,
- 0.1792
- ],
- "tag": null,
- "to": [
- 5.4642,
- 0.175
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4642,
- 0.175
- ],
- "tag": null,
- "to": [
- 5.4563,
- 0.1709
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4563,
- 0.1709
- ],
- "tag": null,
- "to": [
- 5.4483,
- 0.1669
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4483,
- 0.1669
- ],
- "tag": null,
- "to": [
- 5.4403,
- 0.1628
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4403,
- 0.1628
- ],
- "tag": null,
- "to": [
- 5.4324,
- 0.1588
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4324,
- 0.1588
- ],
- "tag": null,
- "to": [
- 5.4244,
- 0.1549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4244,
- 0.1549
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.151
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.151
- ],
- "tag": null,
- "to": [
- 5.4084,
- 0.1471
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4084,
- 0.1471
- ],
- "tag": null,
- "to": [
- 5.4004,
- 0.1433
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4004,
- 0.1433
- ],
- "tag": null,
- "to": [
- 5.3924,
- 0.1395
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3924,
- 0.1395
- ],
- "tag": null,
- "to": [
- 5.3845,
- 0.1357
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3845,
- 0.1357
- ],
- "tag": null,
- "to": [
- 5.3765,
- 0.132
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3765,
- 0.132
- ],
- "tag": null,
- "to": [
- 5.3685,
- 0.1283
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3685,
- 0.1283
- ],
- "tag": null,
- "to": [
- 5.3605,
- 0.1246
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3605,
- 0.1246
- ],
- "tag": null,
- "to": [
- 5.3525,
- 0.121
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3525,
- 0.121
- ],
- "tag": null,
- "to": [
- 5.3444,
- 0.1174
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3444,
- 0.1174
- ],
- "tag": null,
- "to": [
- 5.3364,
- 0.1139
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3364,
- 0.1139
- ],
- "tag": null,
- "to": [
- 5.3284,
- 0.1104
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3284,
- 0.1104
- ],
- "tag": null,
- "to": [
- 5.3204,
- 0.107
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3204,
- 0.107
- ],
- "tag": null,
- "to": [
- 5.3124,
- 0.1036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3124,
- 0.1036
- ],
- "tag": null,
- "to": [
- 5.3044,
- 0.1002
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3044,
- 0.1002
- ],
- "tag": null,
- "to": [
- 5.2963,
- 0.0969
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2963,
- 0.0969
- ],
- "tag": null,
- "to": [
- 5.2883,
- 0.0936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2883,
- 0.0936
- ],
- "tag": null,
- "to": [
- 5.2803,
- 0.0903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2803,
- 0.0903
- ],
- "tag": null,
- "to": [
- 5.2722,
- 0.0871
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2722,
- 0.0871
- ],
- "tag": null,
- "to": [
- 5.2642,
- 0.084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2642,
- 0.084
- ],
- "tag": null,
- "to": [
- 5.2562,
- 0.0808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2562,
- 0.0808
- ],
- "tag": null,
- "to": [
- 5.2481,
- 0.0778
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2481,
- 0.0778
- ],
- "tag": null,
- "to": [
- 5.2401,
- 0.0747
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2401,
- 0.0747
- ],
- "tag": null,
- "to": [
- 5.2321,
- 0.0717
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2321,
- 0.0717
- ],
- "tag": null,
- "to": [
- 5.224,
- 0.0688
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.224,
- 0.0688
- ],
- "tag": null,
- "to": [
- 5.216,
- 0.0659
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.216,
- 0.0659
- ],
- "tag": null,
- "to": [
- 5.2079,
- 0.063
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2079,
- 0.063
- ],
- "tag": null,
- "to": [
- 5.1999,
- 0.0602
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1999,
- 0.0602
- ],
- "tag": null,
- "to": [
- 5.1918,
- 0.0575
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1918,
- 0.0575
- ],
- "tag": null,
- "to": [
- 5.1837,
- 0.0547
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1837,
- 0.0547
- ],
- "tag": null,
- "to": [
- 5.1757,
- 0.0521
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1757,
- 0.0521
- ],
- "tag": null,
- "to": [
- 5.1676,
- 0.0494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1676,
- 0.0494
- ],
- "tag": null,
- "to": [
- 5.1596,
- 0.0469
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1596,
- 0.0469
- ],
- "tag": null,
- "to": [
- 5.1515,
- 0.0443
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1515,
- 0.0443
- ],
- "tag": null,
- "to": [
- 5.1434,
- 0.0419
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1434,
- 0.0419
- ],
- "tag": null,
- "to": [
- 5.1354,
- 0.0394
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1354,
- 0.0394
- ],
- "tag": null,
- "to": [
- 5.1273,
- 0.0371
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1273,
- 0.0371
- ],
- "tag": null,
- "to": [
- 5.1192,
- 0.0347
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1192,
- 0.0347
- ],
- "tag": null,
- "to": [
- 5.1112,
- 0.0325
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1112,
- 0.0325
- ],
- "tag": null,
- "to": [
- 5.1031,
- 0.0303
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1031,
- 0.0303
- ],
- "tag": null,
- "to": [
- 5.095,
- 0.0281
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.095,
- 0.0281
- ],
- "tag": null,
- "to": [
- 5.0869,
- 0.026
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0869,
- 0.026
- ],
- "tag": null,
- "to": [
- 5.0789,
- 0.0239
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0789,
- 0.0239
- ],
- "tag": null,
- "to": [
- 5.0708,
- 0.022
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0708,
- 0.022
- ],
- "tag": null,
- "to": [
- 5.0627,
- 0.02
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0627,
- 0.02
- ],
- "tag": null,
- "to": [
- 5.0546,
- 0.0182
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0546,
- 0.0182
- ],
- "tag": null,
- "to": [
- 5.0466,
- 0.0164
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0466,
- 0.0164
- ],
- "tag": null,
- "to": [
- 5.0385,
- 0.0146
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0385,
- 0.0146
- ],
- "tag": null,
- "to": [
- 5.0304,
- 0.013
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0304,
- 0.013
- ],
- "tag": null,
- "to": [
- 5.0223,
- 0.0114
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0223,
- 0.0114
- ],
- "tag": null,
- "to": [
- 5.0142,
- 0.0098
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0142,
- 0.0098
- ],
- "tag": null,
- "to": [
- 5.0061,
- 0.0084
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0061,
- 0.0084
- ],
- "tag": null,
- "to": [
- 4.9981,
- 0.007
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9981,
- 0.007
- ],
- "tag": null,
- "to": [
- 4.99,
- 0.0058
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.99,
- 0.0058
- ],
- "tag": null,
- "to": [
- 4.9819,
- 0.0046
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9819,
- 0.0046
- ],
- "tag": null,
- "to": [
- 4.9738,
- 0.0035
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9738,
- 0.0035
- ],
- "tag": null,
- "to": [
- 4.9657,
- 0.0025
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9657,
- 0.0025
- ],
- "tag": null,
- "to": [
- 4.9576,
- 0.0016
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9576,
- 0.0016
- ],
- "tag": null,
- "to": [
- 4.9496,
- 0.0009
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9496,
- 0.0009
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.0003
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.0003
- ],
- "tag": null,
- "to": [
- 4.9334,
- 0.0
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "ccw": true,
- "center": [
- -0.0,
- -0.0
- ],
- "from": [
- 4.9334,
- 0.0
- ],
- "radius": 4.933386259126019,
- "tag": null,
- "to": [
- 4.8356,
- 0.9775
- ],
- "type": "Arc",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8356,
- 0.9775
- ],
- "tag": null,
- "to": [
- 4.8436,
- 0.9788
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8436,
- 0.9788
- ],
- "tag": null,
- "to": [
- 4.8516,
- 0.9799
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8516,
- 0.9799
- ],
- "tag": null,
- "to": [
- 4.8597,
- 0.9808
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8597,
- 0.9808
- ],
- "tag": null,
- "to": [
- 4.8678,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8678,
- 0.9815
- ],
- "tag": null,
- "to": [
- 4.8759,
- 0.9821
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8759,
- 0.9821
- ],
- "tag": null,
- "to": [
- 4.884,
- 0.9827
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.884,
- 0.9827
- ],
- "tag": null,
- "to": [
- 4.8922,
- 0.9831
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.8922,
- 0.9831
- ],
- "tag": null,
- "to": [
- 4.9004,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9004,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9086,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9086,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9168,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9168,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.925,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.925,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9332,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9332,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9415,
- 0.984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9415,
- 0.984
- ],
- "tag": null,
- "to": [
- 4.9497,
- 0.9839
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9497,
- 0.9839
- ],
- "tag": null,
- "to": [
- 4.958,
- 0.9837
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.958,
- 0.9837
- ],
- "tag": null,
- "to": [
- 4.9663,
- 0.9835
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9663,
- 0.9835
- ],
- "tag": null,
- "to": [
- 4.9746,
- 0.9832
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9746,
- 0.9832
- ],
- "tag": null,
- "to": [
- 4.9829,
- 0.9829
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9829,
- 0.9829
- ],
- "tag": null,
- "to": [
- 4.9912,
- 0.9825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9912,
- 0.9825
- ],
- "tag": null,
- "to": [
- 4.9996,
- 0.982
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 4.9996,
- 0.982
- ],
- "tag": null,
- "to": [
- 5.0079,
- 0.9815
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0079,
- 0.9815
- ],
- "tag": null,
- "to": [
- 5.0163,
- 0.9809
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0163,
- 0.9809
- ],
- "tag": null,
- "to": [
- 5.0246,
- 0.9803
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0246,
- 0.9803
- ],
- "tag": null,
- "to": [
- 5.033,
- 0.9796
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.033,
- 0.9796
- ],
- "tag": null,
- "to": [
- 5.0414,
- 0.9789
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0414,
- 0.9789
- ],
- "tag": null,
- "to": [
- 5.0497,
- 0.9781
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0497,
- 0.9781
- ],
- "tag": null,
- "to": [
- 5.0581,
- 0.9773
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0581,
- 0.9773
- ],
- "tag": null,
- "to": [
- 5.0665,
- 0.9764
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0665,
- 0.9764
- ],
- "tag": null,
- "to": [
- 5.075,
- 0.9755
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.075,
- 0.9755
- ],
- "tag": null,
- "to": [
- 5.0834,
- 0.9745
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0834,
- 0.9745
- ],
- "tag": null,
- "to": [
- 5.0918,
- 0.9735
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.0918,
- 0.9735
- ],
- "tag": null,
- "to": [
- 5.1002,
- 0.9724
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1002,
- 0.9724
- ],
- "tag": null,
- "to": [
- 5.1087,
- 0.9713
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1087,
- 0.9713
- ],
- "tag": null,
- "to": [
- 5.1171,
- 0.9701
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1171,
- 0.9701
- ],
- "tag": null,
- "to": [
- 5.1256,
- 0.9689
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1256,
- 0.9689
- ],
- "tag": null,
- "to": [
- 5.1341,
- 0.9677
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1341,
- 0.9677
- ],
- "tag": null,
- "to": [
- 5.1425,
- 0.9664
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1425,
- 0.9664
- ],
- "tag": null,
- "to": [
- 5.151,
- 0.9651
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.151,
- 0.9651
- ],
- "tag": null,
- "to": [
- 5.1595,
- 0.9637
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1595,
- 0.9637
- ],
- "tag": null,
- "to": [
- 5.168,
- 0.9623
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.168,
- 0.9623
- ],
- "tag": null,
- "to": [
- 5.1765,
- 0.9608
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1765,
- 0.9608
- ],
- "tag": null,
- "to": [
- 5.185,
- 0.9593
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.185,
- 0.9593
- ],
- "tag": null,
- "to": [
- 5.1935,
- 0.9577
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.1935,
- 0.9577
- ],
- "tag": null,
- "to": [
- 5.202,
- 0.9561
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.202,
- 0.9561
- ],
- "tag": null,
- "to": [
- 5.2105,
- 0.9545
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2105,
- 0.9545
- ],
- "tag": null,
- "to": [
- 5.219,
- 0.9528
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.219,
- 0.9528
- ],
- "tag": null,
- "to": [
- 5.2276,
- 0.9511
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2276,
- 0.9511
- ],
- "tag": null,
- "to": [
- 5.2361,
- 0.9494
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2361,
- 0.9494
- ],
- "tag": null,
- "to": [
- 5.2447,
- 0.9476
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2447,
- 0.9476
- ],
- "tag": null,
- "to": [
- 5.2532,
- 0.9457
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2532,
- 0.9457
- ],
- "tag": null,
- "to": [
- 5.2617,
- 0.9439
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2617,
- 0.9439
- ],
- "tag": null,
- "to": [
- 5.2703,
- 0.942
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2703,
- 0.942
- ],
- "tag": null,
- "to": [
- 5.2789,
- 0.94
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2789,
- 0.94
- ],
- "tag": null,
- "to": [
- 5.2874,
- 0.938
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.2874,
- 0.938
- ],
- "tag": null,
- "to": [
- 5.296,
- 0.936
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.296,
- 0.936
- ],
- "tag": null,
- "to": [
- 5.3046,
- 0.9339
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3046,
- 0.9339
- ],
- "tag": null,
- "to": [
- 5.3132,
- 0.9318
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3132,
- 0.9318
- ],
- "tag": null,
- "to": [
- 5.3217,
- 0.9297
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3217,
- 0.9297
- ],
- "tag": null,
- "to": [
- 5.3303,
- 0.9275
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3303,
- 0.9275
- ],
- "tag": null,
- "to": [
- 5.3389,
- 0.9253
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3389,
- 0.9253
- ],
- "tag": null,
- "to": [
- 5.3475,
- 0.923
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3475,
- 0.923
- ],
- "tag": null,
- "to": [
- 5.3561,
- 0.9207
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3561,
- 0.9207
- ],
- "tag": null,
- "to": [
- 5.3647,
- 0.9184
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3647,
- 0.9184
- ],
- "tag": null,
- "to": [
- 5.3733,
- 0.916
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3733,
- 0.916
- ],
- "tag": null,
- "to": [
- 5.3819,
- 0.9136
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3819,
- 0.9136
- ],
- "tag": null,
- "to": [
- 5.3906,
- 0.9112
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3906,
- 0.9112
- ],
- "tag": null,
- "to": [
- 5.3992,
- 0.9087
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.3992,
- 0.9087
- ],
- "tag": null,
- "to": [
- 5.4078,
- 0.9062
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4078,
- 0.9062
- ],
- "tag": null,
- "to": [
- 5.4164,
- 0.9036
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4164,
- 0.9036
- ],
- "tag": null,
- "to": [
- 5.425,
- 0.901
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.425,
- 0.901
- ],
- "tag": null,
- "to": [
- 5.4337,
- 0.8984
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4337,
- 0.8984
- ],
- "tag": null,
- "to": [
- 5.4423,
- 0.8958
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4423,
- 0.8958
- ],
- "tag": null,
- "to": [
- 5.4509,
- 0.8931
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4509,
- 0.8931
- ],
- "tag": null,
- "to": [
- 5.4596,
- 0.8903
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4596,
- 0.8903
- ],
- "tag": null,
- "to": [
- 5.4682,
- 0.8876
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4682,
- 0.8876
- ],
- "tag": null,
- "to": [
- 5.4769,
- 0.8848
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4769,
- 0.8848
- ],
- "tag": null,
- "to": [
- 5.4855,
- 0.8819
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4855,
- 0.8819
- ],
- "tag": null,
- "to": [
- 5.4942,
- 0.8791
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.4942,
- 0.8791
- ],
- "tag": null,
- "to": [
- 5.5028,
- 0.8762
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5028,
- 0.8762
- ],
- "tag": null,
- "to": [
- 5.5115,
- 0.8732
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5115,
- 0.8732
- ],
- "tag": null,
- "to": [
- 5.5201,
- 0.8703
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5201,
- 0.8703
- ],
- "tag": null,
- "to": [
- 5.5288,
- 0.8672
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5288,
- 0.8672
- ],
- "tag": null,
- "to": [
- 5.5374,
- 0.8642
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5374,
- 0.8642
- ],
- "tag": null,
- "to": [
- 5.5461,
- 0.8611
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5461,
- 0.8611
- ],
- "tag": null,
- "to": [
- 5.5548,
- 0.858
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5548,
- 0.858
- ],
- "tag": null,
- "to": [
- 5.5634,
- 0.8549
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5634,
- 0.8549
- ],
- "tag": null,
- "to": [
- 5.5721,
- 0.8517
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5721,
- 0.8517
- ],
- "tag": null,
- "to": [
- 5.5808,
- 0.8485
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5808,
- 0.8485
- ],
- "tag": null,
- "to": [
- 5.5894,
- 0.8452
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5894,
- 0.8452
- ],
- "tag": null,
- "to": [
- 5.5981,
- 0.842
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.5981,
- 0.842
- ],
- "tag": null,
- "to": [
- 5.6068,
- 0.8386
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6068,
- 0.8386
- ],
- "tag": null,
- "to": [
- 5.6154,
- 0.8353
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6154,
- 0.8353
- ],
- "tag": null,
- "to": [
- 5.6241,
- 0.8319
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6241,
- 0.8319
- ],
- "tag": null,
- "to": [
- 5.6328,
- 0.8285
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6328,
- 0.8285
- ],
- "tag": null,
- "to": [
- 5.6415,
- 0.825
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6415,
- 0.825
- ],
- "tag": null,
- "to": [
- 5.6502,
- 0.8216
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6502,
- 0.8216
- ],
- "tag": null,
- "to": [
- 5.6588,
- 0.8181
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6588,
- 0.8181
- ],
- "tag": null,
- "to": [
- 5.6675,
- 0.8145
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6675,
- 0.8145
- ],
- "tag": null,
- "to": [
- 5.6762,
- 0.8109
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6762,
- 0.8109
- ],
- "tag": null,
- "to": [
- 5.6849,
- 0.8073
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6849,
- 0.8073
- ],
- "tag": null,
- "to": [
- 5.6936,
- 0.8037
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- },
- {
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- },
- "from": [
- 5.6936,
- 0.8037
- ],
- "tag": null,
- "to": [
- 5.7399,
- 0.3404
- ],
- "type": "ToPoint",
- "units": {
- "type": "Inches"
- }
- }
- ],
- "on": {
- "artifactId": "[uuid]",
- "id": "[uuid]",
- "origin": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Mm"
- }
- },
- "type": "plane",
- "value": "XY",
- "xAxis": {
- "x": 1.0,
- "y": 0.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- },
- "yAxis": {
- "x": 0.0,
- "y": 1.0,
- "z": 0.0,
- "units": {
- "type": "Unknown"
- }
- }
- },
- "start": {
- "from": [
- 5.7399,
- 0.3404
- ],
- "to": [
- 5.7399,
- 0.3404
- ],
- "units": {
- "type": "Inches"
- },
- "tag": null,
- "__geoMeta": {
- "id": "[uuid]",
- "sourceRange": []
- }
- },
- "artifactId": "[uuid]",
- "originalId": "[uuid]",
- "units": {
- "type": "Inches"
- }
- },
- "height": 3.0,
- "startCapId": null,
- "endCapId": null,
- "units": {
- "type": "Inches"
- },
- "sectional": false
- }
- }
- ]
- },
- "tipDiameter": {
- "type": "Number",
- "value": 11.5,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "toothAngle": {
- "type": "Number",
- "value": 11.4286,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- "xs": {
- "type": "HomArray",
- "value": [
- {
- "type": "Number",
- "value": 4.9334,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9415,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9496,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9576,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9657,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9738,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9819,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.99,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 4.9981,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0061,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0142,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0223,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0304,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0385,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0466,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0546,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0627,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0708,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0789,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.0869,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.095,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1031,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1112,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1192,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1273,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1354,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1434,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1515,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1596,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1676,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1757,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1837,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1918,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.1999,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2079,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.216,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.224,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2321,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2401,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2481,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2562,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2642,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2722,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2803,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2883,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.2963,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3044,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3124,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3204,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3284,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3364,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3444,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3525,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3605,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3685,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3765,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3845,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.3924,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4004,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4084,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4164,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4244,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4324,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4403,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4483,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4563,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4642,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4722,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4801,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.4881,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.496,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.504,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5119,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5198,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5277,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5357,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5436,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5515,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5594,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5673,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5752,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5831,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.591,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.5989,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6068,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6146,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6225,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6304,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6382,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6461,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6539,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6618,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6696,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6775,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6853,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.6931,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7009,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7087,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7165,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7243,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7321,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 5.7399,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- }
- ]
- },
- "ys": {
- "type": "HomArray",
- "value": [
- {
- "type": "Number",
- "value": 0.0,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0003,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0009,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0016,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0025,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0035,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0046,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0058,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.007,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0084,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0098,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0114,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.013,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0146,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0164,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0182,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.02,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.022,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0239,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.026,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0281,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0303,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0325,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0347,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0371,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0394,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0419,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0443,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0469,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0494,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0521,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0547,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0575,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0602,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.063,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0659,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0688,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0717,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0747,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0778,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0808,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.084,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0871,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0903,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0936,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.0969,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1002,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1036,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.107,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1104,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1139,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1174,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.121,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1246,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1283,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.132,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1357,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1395,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1433,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1471,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.151,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1549,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1588,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1628,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1669,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1709,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.175,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1792,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1833,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1875,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1918,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.1961,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2004,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2047,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2091,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2135,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.218,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2225,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.227,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2316,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2362,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2408,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2455,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2502,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2549,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2597,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2644,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2693,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.2741,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.279,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.284,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.289,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.294,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.299,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3041,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3091,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3143,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3194,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3246,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3299,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3351,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- },
- {
- "type": "Number",
- "value": 0.3404,
- "ty": {
- "type": "Default",
- "len": {
- "type": "Inches"
- },
- "angle": {
- "type": "Degrees"
- }
- }
- }
- ]
- }
-}
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png
deleted file mode 100644
index c8e9d00f5..000000000
Binary files a/rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png and /dev/null differ
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap
new file mode 100644
index 000000000..924177df8
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap
@@ -0,0 +1,4814 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands helical-gear.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 3.3541019662496847,
+ "y": 1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.0,
+ "y": -2.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 343.3984504009797
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 16.601549599020235
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 3.5
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 7.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000012083311382392428,
+ "y": 19.733545036504076,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 2.1026747593723187,
+ "y": 19.62120176146286,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.20534951874464,
+ "y": 19.280244685504613,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 83.88333258352058
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 77.6955281798938
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.0495,
+ "y": 22.7969,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -0.603,
+ "y": 22.9921,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 1.8788,
+ "y": 22.9231,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 616.4231928988978
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": -97.46013968462269
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 19.733545036504076,
+ "end_radius": 23.0,
+ "angle": {
+ "unit": "degrees",
+ "value": -91.27233528099597
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.8166,
+ "y": 18.8568,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.7742,
+ "y": 19.3693,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -1.6644,
+ "y": 19.6632,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 20,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 20,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 20,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 2,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap
new file mode 100644
index 000000000..96dff0c49
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap
@@ -0,0 +1,6 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact graph flowchart helical-gear.kcl
+extension: md
+snapshot_kind: binary
+---
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..4f268abec
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md
@@ -0,0 +1,138 @@
+```mermaid
+flowchart LR
+ subgraph path8 [Path]
+ 8["Path
[889, 995, 0]"]
+ 12["Segment
[1003, 1030, 0]"]
+ 13["Segment
[1038, 1066, 0]"]
+ 14["Segment
[1074, 1102, 0]"]
+ 15["Segment
[1110, 1186, 0]"]
+ 16["Segment
[1194, 1259, 0]"]
+ 17["Segment
[1267, 1274, 0]"]
+ 30[Solid2d]
+ end
+ subgraph path9 [Path]
+ 9["Path
[1779, 1849, 0]"]
+ 26["Segment
[2813, 2820, 0]"]
+ 29[Solid2d]
+ end
+ subgraph path10 [Path]
+ 10["Path
[1779, 1849, 0]"]
+ 19["Segment
[1859, 2025, 0]"]
+ 20["Segment
[2035, 2120, 0]"]
+ 23["Segment
[2130, 2351, 0]"]
+ 24["Segment
[2438, 2524, 0]"]
+ 28["Segment
[2813, 2820, 0]"]
+ 31[Solid2d]
+ end
+ subgraph path11 [Path]
+ 11["Path
[1779, 1849, 0]"]
+ 18["Segment
[1859, 2025, 0]"]
+ 21["Segment
[2035, 2120, 0]"]
+ 22["Segment
[2130, 2351, 0]"]
+ 25["Segment
[2438, 2524, 0]"]
+ 27["Segment
[2813, 2820, 0]"]
+ 32[Solid2d]
+ end
+ 1["Plane
[864, 881, 0]"]
+ 2["Plane
[1730, 1768, 0]"]
+ 3["Plane
[1730, 1768, 0]"]
+ 4["Plane
[1730, 1768, 0]"]
+ 5["StartSketchOnPlane
[1716, 1769, 0]"]
+ 6["StartSketchOnPlane
[1716, 1769, 0]"]
+ 7["StartSketchOnPlane
[1716, 1769, 0]"]
+ 33["Sweep Loft
[3337, 3404, 0]"]
+ 34[Wall]
+ 35[Wall]
+ 36[Wall]
+ 37[Wall]
+ 38["Cap Start"]
+ 39["Cap End"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Adjacent"]
+ 45["SweepEdge Adjacent"]
+ 46["SweepEdge Adjacent"]
+ 47["SweepEdge Adjacent"]
+ 1 --- 8
+ 2 <--x 7
+ 2 --- 9
+ 3 <--x 5
+ 3 --- 10
+ 4 <--x 6
+ 4 --- 11
+ 8 --- 12
+ 8 --- 13
+ 8 --- 14
+ 8 --- 15
+ 8 --- 16
+ 8 --- 17
+ 8 --- 30
+ 9 --- 26
+ 9 --- 29
+ 9 x---> 33
+ 9 x--> 40
+ 9 x--> 41
+ 9 x--> 42
+ 9 x--> 43
+ 10 --- 19
+ 10 --- 20
+ 10 --- 23
+ 10 --- 24
+ 10 --- 28
+ 10 --- 31
+ 10 x---> 33
+ 11 --- 18
+ 11 --- 21
+ 11 --- 22
+ 11 --- 25
+ 11 --- 27
+ 11 --- 32
+ 11 ---- 33
+ 18 --- 34
+ 18 x--> 38
+ 18 --- 41
+ 18 --- 47
+ 21 --- 36
+ 21 x--> 38
+ 21 --- 42
+ 21 --- 44
+ 22 --- 35
+ 22 x--> 38
+ 22 --- 40
+ 22 --- 46
+ 25 --- 37
+ 25 x--> 38
+ 25 --- 43
+ 25 --- 45
+ 33 --- 34
+ 33 --- 35
+ 33 --- 36
+ 33 --- 37
+ 33 --- 38
+ 33 --- 39
+ 33 --- 40
+ 33 --- 41
+ 33 --- 42
+ 33 --- 43
+ 33 --- 44
+ 33 --- 45
+ 33 --- 46
+ 33 --- 47
+ 41 <--x 34
+ 44 <--x 34
+ 47 <--x 34
+ 40 <--x 35
+ 45 <--x 35
+ 46 <--x 35
+ 42 <--x 36
+ 44 <--x 36
+ 46 <--x 36
+ 43 <--x 37
+ 45 <--x 37
+ 40 <--x 39
+ 41 <--x 39
+ 42 <--x 39
+ 43 <--x 39
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap
new file mode 100644
index 000000000..04f8395d9
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap
@@ -0,0 +1,3582 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing helical-gear.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Define the constants of the keyway and the bore hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "7",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 7.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "asin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "sin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "yLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Define a function to create a rotated gear sketch on an offset plane",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Sketch the keyway and center hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch on a middle interstitial plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch at the gear height offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Loft each rotated gear sketch together to form a helical gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "15": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a helical gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "21",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 21.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "20",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 20.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "35",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 35.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "7",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 7.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Helical Gear",
+ "// A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "0": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap
new file mode 100644
index 000000000..09d76ae40
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap
@@ -0,0 +1,830 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed helical-gear.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 3.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 7.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.4640403411278755,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.3560427808151838,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7037737936135122,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 23.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5970178079464912,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 23.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.4890202476337995,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 23.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.8699956271367815,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7632396414697604,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.655242081157069,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 19.733545036504076,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 3.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 7.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {},
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 7.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": 35.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 2.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 21.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 20.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap
new file mode 100644
index 000000000..cbc7666bf
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap
@@ -0,0 +1,10 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing helical-gear.kcl
+---
+{
+ "helicalGear": {
+ "type": "Function",
+ "value": null
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png
new file mode 100644
index 000000000..f19848805
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png differ
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap
new file mode 100644
index 000000000..b9ced20b1
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap
@@ -0,0 +1,7333 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands helical-planetary-gearset.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 3.4641016151377544,
+ "y": 0.5,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 3.4641016151377544,
+ "y": 0.5,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.5,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.5,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -0.5,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -0.5,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 351.7867892982618
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 351.7867892982618
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 8.213210701738188
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 3.5,
+ "start": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 8.213210701738188
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 2.5
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 5.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 2.5
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 5.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.000000000000000534721299934615,
+ "y": 8.732661536483969,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.969549273937636,
+ "y": 8.678672232328719,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 1.9390985478752734,
+ "y": 8.514650570188689,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.000000000000000534721299934615,
+ "y": 8.732661536483969,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -0.9695492739376349,
+ "y": 8.678672232328719,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -1.9390985478752725,
+ "y": 8.514650570188689,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 83.62555782351659
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 77.17045767129221
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 96.3744421764834
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 102.82954232870779
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.4215,
+ "y": 10.217,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -1.2722,
+ "y": 10.4227,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -0.0923,
+ "y": 10.4996,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.4215,
+ "y": 10.217,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.5408,
+ "y": 9.885,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.6297,
+ "y": 9.4242,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 611.9038409048754
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": -101.72171691864123
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": -95.26661676641692
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 611.9038409048754
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 605.529398728392
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 8.732661536483969,
+ "end_radius": 10.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 599.0742985761676
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.3663,
+ "y": 7.5627,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.4997,
+ "y": 8.0007,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.578,
+ "y": 8.3435,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.3663,
+ "y": 7.5627,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.179,
+ "y": 7.0312,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.9366,
+ "y": 6.4044,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 11,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 2,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 2,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 2.5
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 5.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000018715245497711523,
+ "y": 30.564315377693887,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -1.0797253277941856,
+ "y": 30.54523805315085,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -2.159450655588366,
+ "y": 30.487934455669738,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 92.02447128028268
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 94.05147558880067
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.7395,
+ "y": 32.8861,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.8995,
+ "y": 32.7688,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.0561,
+ "y": 32.6104,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 625.3044620244902
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 623.2799907442076
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 30.564315377693887,
+ "end_radius": 33.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 621.2529864356896
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.5554,
+ "y": 30.2229,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.6202,
+ "y": 30.0431,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -6.6793,
+ "y": 29.8256,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 41,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 41,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 41,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 2.5
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 5.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 35.67567567567568,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 35.67567567567568,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 35.67567567567568,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 35.67567567567568,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 35.67567567567568,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 35.67567567567568,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 2,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 20.7,
+ "z": 0.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 2,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": false
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap
new file mode 100644
index 000000000..ea52be007
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap
@@ -0,0 +1,6 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact graph flowchart helical-planetary-gearset.kcl
+extension: md
+snapshot_kind: binary
+---
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..70624fbb6
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md
@@ -0,0 +1,383 @@
+```mermaid
+flowchart LR
+ subgraph path27 [Path]
+ 27["Path
[973, 1079, 0]"]
+ 41["Segment
[1087, 1114, 0]"]
+ 44["Segment
[1122, 1150, 0]"]
+ 45["Segment
[1158, 1186, 0]"]
+ 47["Segment
[1194, 1270, 0]"]
+ 49["Segment
[1278, 1343, 0]"]
+ 52["Segment
[1351, 1358, 0]"]
+ 93[Solid2d]
+ end
+ subgraph path28 [Path]
+ 28["Path
[973, 1079, 0]"]
+ 42["Segment
[1087, 1114, 0]"]
+ 43["Segment
[1122, 1150, 0]"]
+ 46["Segment
[1158, 1186, 0]"]
+ 48["Segment
[1194, 1270, 0]"]
+ 50["Segment
[1278, 1343, 0]"]
+ 51["Segment
[1351, 1358, 0]"]
+ 95[Solid2d]
+ end
+ subgraph path29 [Path]
+ 29["Path
[1863, 1933, 0]"]
+ 55["Segment
[1943, 2109, 0]"]
+ 58["Segment
[2119, 2204, 0]"]
+ 64["Segment
[2214, 2435, 0]"]
+ 67["Segment
[2522, 2608, 0]"]
+ 69["Segment
[2897, 2904, 0]"]
+ 92[Solid2d]
+ end
+ subgraph path30 [Path]
+ 30["Path
[1863, 1933, 0]"]
+ 70["Segment
[2897, 2904, 0]"]
+ 98[Solid2d]
+ end
+ subgraph path31 [Path]
+ 31["Path
[1863, 1933, 0]"]
+ 53["Segment
[1943, 2109, 0]"]
+ 57["Segment
[2119, 2204, 0]"]
+ 62["Segment
[2214, 2435, 0]"]
+ 66["Segment
[2522, 2608, 0]"]
+ 71["Segment
[2897, 2904, 0]"]
+ 99[Solid2d]
+ end
+ subgraph path32 [Path]
+ 32["Path
[1863, 1933, 0]"]
+ 56["Segment
[1943, 2109, 0]"]
+ 60["Segment
[2119, 2204, 0]"]
+ 61["Segment
[2214, 2435, 0]"]
+ 65["Segment
[2522, 2608, 0]"]
+ 74["Segment
[2897, 2904, 0]"]
+ 100[Solid2d]
+ end
+ subgraph path33 [Path]
+ 33["Path
[1863, 1933, 0]"]
+ 73["Segment
[2897, 2904, 0]"]
+ 102[Solid2d]
+ end
+ subgraph path34 [Path]
+ 34["Path
[1863, 1933, 0]"]
+ 54["Segment
[1943, 2109, 0]"]
+ 59["Segment
[2119, 2204, 0]"]
+ 63["Segment
[2214, 2435, 0]"]
+ 68["Segment
[2522, 2608, 0]"]
+ 72["Segment
[2897, 2904, 0]"]
+ 103[Solid2d]
+ end
+ subgraph path35 [Path]
+ 35["Path
[4327, 4397, 0]"]
+ 77["Segment
[4407, 4573, 0]"]
+ 79["Segment
[4583, 4668, 0]"]
+ 83["Segment
[4678, 4899, 0]"]
+ 84["Segment
[4986, 5072, 0]"]
+ 88["Segment
[5361, 5368, 0]"]
+ 96[Solid2d]
+ end
+ subgraph path36 [Path]
+ 36["Path
[4327, 4397, 0]"]
+ 75["Segment
[4407, 4573, 0]"]
+ 80["Segment
[4583, 4668, 0]"]
+ 82["Segment
[4678, 4899, 0]"]
+ 85["Segment
[4986, 5072, 0]"]
+ 87["Segment
[5361, 5368, 0]"]
+ 101[Solid2d]
+ end
+ subgraph path37 [Path]
+ 37["Path
[4327, 4397, 0]"]
+ 76["Segment
[4407, 4573, 0]"]
+ 78["Segment
[4583, 4668, 0]"]
+ 81["Segment
[4678, 4899, 0]"]
+ 86["Segment
[4986, 5072, 0]"]
+ 89["Segment
[5361, 5368, 0]"]
+ 105[Solid2d]
+ end
+ subgraph path38 [Path]
+ 38["Path
[5579, 5631, 0]"]
+ 91["Segment
[5579, 5631, 0]"]
+ 94[Solid2d]
+ end
+ subgraph path39 [Path]
+ 39["Path
[5579, 5631, 0]"]
+ 97[Solid2d]
+ end
+ subgraph path40 [Path]
+ 40["Path
[5579, 5631, 0]"]
+ 90["Segment
[5579, 5631, 0]"]
+ 104[Solid2d]
+ end
+ 1["Plane
[948, 965, 0]"]
+ 2["Plane
[948, 965, 0]"]
+ 3["Plane
[1814, 1852, 0]"]
+ 4["Plane
[1814, 1852, 0]"]
+ 5["Plane
[1814, 1852, 0]"]
+ 6["Plane
[1814, 1852, 0]"]
+ 7["Plane
[1814, 1852, 0]"]
+ 8["Plane
[1814, 1852, 0]"]
+ 9["Plane
[4278, 4316, 0]"]
+ 10["Plane
[4278, 4316, 0]"]
+ 11["Plane
[4278, 4316, 0]"]
+ 12["Plane
[5530, 5568, 0]"]
+ 13["Plane
[5530, 5568, 0]"]
+ 14["Plane
[5530, 5568, 0]"]
+ 15["StartSketchOnPlane
[4264, 4317, 0]"]
+ 16["StartSketchOnPlane
[1800, 1853, 0]"]
+ 17["StartSketchOnPlane
[1800, 1853, 0]"]
+ 18["StartSketchOnPlane
[1800, 1853, 0]"]
+ 19["StartSketchOnPlane
[1800, 1853, 0]"]
+ 20["StartSketchOnPlane
[4264, 4317, 0]"]
+ 21["StartSketchOnPlane
[5516, 5569, 0]"]
+ 22["StartSketchOnPlane
[4264, 4317, 0]"]
+ 23["StartSketchOnPlane
[1800, 1853, 0]"]
+ 24["StartSketchOnPlane
[1800, 1853, 0]"]
+ 25["StartSketchOnPlane
[5516, 5569, 0]"]
+ 26["StartSketchOnPlane
[5516, 5569, 0]"]
+ 106["Sweep Loft
[3421, 3488, 0]"]
+ 107["Sweep Loft
[3421, 3488, 0]"]
+ 108["Sweep Loft
[6125, 6192, 0]"]
+ 109[Wall]
+ 110[Wall]
+ 111[Wall]
+ 112[Wall]
+ 113[Wall]
+ 114[Wall]
+ 115[Wall]
+ 116[Wall]
+ 117[Wall]
+ 118["Cap Start"]
+ 119["Cap Start"]
+ 120["Cap Start"]
+ 121["Cap End"]
+ 122["Cap End"]
+ 123["Cap End"]
+ 124["SweepEdge Opposite"]
+ 125["SweepEdge Opposite"]
+ 126["SweepEdge Opposite"]
+ 127["SweepEdge Opposite"]
+ 128["SweepEdge Opposite"]
+ 129["SweepEdge Opposite"]
+ 130["SweepEdge Opposite"]
+ 131["SweepEdge Opposite"]
+ 132["SweepEdge Opposite"]
+ 133["SweepEdge Adjacent"]
+ 134["SweepEdge Adjacent"]
+ 135["SweepEdge Adjacent"]
+ 136["SweepEdge Adjacent"]
+ 137["SweepEdge Adjacent"]
+ 138["SweepEdge Adjacent"]
+ 139["SweepEdge Adjacent"]
+ 140["SweepEdge Adjacent"]
+ 141["SweepEdge Adjacent"]
+ 1 --- 28
+ 2 --- 27
+ 3 <--x 24
+ 3 --- 34
+ 4 <--x 17
+ 4 --- 33
+ 5 <--x 19
+ 5 --- 32
+ 6 <--x 18
+ 6 --- 30
+ 7 <--x 16
+ 7 --- 31
+ 8 <--x 23
+ 8 --- 29
+ 9 <--x 22
+ 9 --- 36
+ 10 <--x 15
+ 10 --- 35
+ 11 <--x 20
+ 11 --- 37
+ 12 <--x 26
+ 12 --- 38
+ 13 <--x 25
+ 13 --- 39
+ 14 <--x 21
+ 14 --- 40
+ 27 --- 41
+ 27 --- 44
+ 27 --- 45
+ 27 --- 47
+ 27 --- 49
+ 27 --- 52
+ 27 --- 93
+ 28 --- 42
+ 28 --- 43
+ 28 --- 46
+ 28 --- 48
+ 28 --- 50
+ 28 --- 51
+ 28 --- 95
+ 29 --- 55
+ 29 --- 58
+ 29 --- 64
+ 29 --- 67
+ 29 --- 69
+ 29 --- 92
+ 29 ---- 107
+ 30 --- 70
+ 30 --- 98
+ 30 x---> 107
+ 30 x--> 128
+ 30 x--> 129
+ 30 x--> 130
+ 30 x--> 131
+ 31 --- 53
+ 31 --- 57
+ 31 --- 62
+ 31 --- 66
+ 31 --- 71
+ 31 --- 99
+ 31 ---- 106
+ 32 --- 56
+ 32 --- 60
+ 32 --- 61
+ 32 --- 65
+ 32 --- 74
+ 32 --- 100
+ 32 x---> 107
+ 33 --- 73
+ 33 --- 102
+ 33 x---> 106
+ 33 x--> 124
+ 33 x--> 125
+ 33 x--> 126
+ 33 x--> 127
+ 34 --- 54
+ 34 --- 59
+ 34 --- 63
+ 34 --- 68
+ 34 --- 72
+ 34 --- 103
+ 34 x---> 106
+ 35 --- 77
+ 35 --- 79
+ 35 --- 83
+ 35 --- 84
+ 35 --- 88
+ 35 --- 96
+ 36 --- 75
+ 36 --- 80
+ 36 --- 82
+ 36 --- 85
+ 36 --- 87
+ 36 --- 101
+ 37 --- 76
+ 37 --- 78
+ 37 --- 81
+ 37 --- 86
+ 37 --- 89
+ 37 --- 105
+ 38 --- 91
+ 38 --- 94
+ 38 ---- 108
+ 39 --- 97
+ 39 x---> 108
+ 39 x--> 132
+ 40 --- 90
+ 40 --- 104
+ 40 x---> 108
+ 53 --- 111
+ 53 x--> 119
+ 53 --- 126
+ 53 --- 135
+ 55 --- 115
+ 55 x--> 118
+ 55 --- 130
+ 55 --- 139
+ 57 --- 109
+ 57 x--> 119
+ 57 --- 124
+ 57 --- 134
+ 58 --- 113
+ 58 x--> 118
+ 58 --- 131
+ 58 --- 138
+ 62 --- 110
+ 62 x--> 119
+ 62 --- 127
+ 62 --- 136
+ 64 --- 116
+ 64 x--> 118
+ 64 --- 129
+ 64 --- 140
+ 66 --- 112
+ 66 x--> 119
+ 66 --- 125
+ 66 --- 133
+ 67 --- 114
+ 67 x--> 118
+ 67 --- 128
+ 67 --- 137
+ 91 --- 117
+ 91 x--> 120
+ 91 --- 132
+ 91 --- 141
+ 106 --- 109
+ 106 --- 110
+ 106 --- 111
+ 106 --- 112
+ 106 --- 119
+ 106 --- 122
+ 106 --- 124
+ 106 --- 125
+ 106 --- 126
+ 106 --- 127
+ 106 --- 133
+ 106 --- 134
+ 106 --- 135
+ 106 --- 136
+ 107 --- 113
+ 107 --- 114
+ 107 --- 115
+ 107 --- 116
+ 107 --- 118
+ 107 --- 121
+ 107 --- 128
+ 107 --- 129
+ 107 --- 130
+ 107 --- 131
+ 107 --- 137
+ 107 --- 138
+ 107 --- 139
+ 107 --- 140
+ 108 --- 117
+ 108 --- 120
+ 108 --- 123
+ 108 --- 132
+ 108 --- 141
+ 124 <--x 109
+ 134 <--x 109
+ 136 <--x 109
+ 127 <--x 110
+ 133 <--x 110
+ 136 <--x 110
+ 126 <--x 111
+ 134 <--x 111
+ 135 <--x 111
+ 125 <--x 112
+ 133 <--x 112
+ 131 <--x 113
+ 138 <--x 113
+ 140 <--x 113
+ 128 <--x 114
+ 137 <--x 114
+ 130 <--x 115
+ 138 <--x 115
+ 139 <--x 115
+ 129 <--x 116
+ 137 <--x 116
+ 140 <--x 116
+ 132 <--x 117
+ 141 <--x 117
+ 128 <--x 121
+ 129 <--x 121
+ 130 <--x 121
+ 131 <--x 121
+ 124 <--x 122
+ 125 <--x 122
+ 126 <--x 122
+ 127 <--x 122
+ 132 <--x 123
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap
new file mode 100644
index 000000000..d869f4c1d
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap
@@ -0,0 +1,6871 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing helical-planetary-gearset.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Define the constants of the keyway and the bore hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "7",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 7.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "asin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "sin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "yLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Define a function to create a rotated gear sketch on an offset plane",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Sketch the keyway and center hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch on a middle interstitial plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch at the gear height offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Loft each rotated gear sketch together to form a helical gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "15": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a helical gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "200",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 200.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.85",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.85,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "circle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a rotated gear sketch on an offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch on a middle interstitial plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch at the gear height offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Loft each rotated gear sketch together to form a ring gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "9": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a ring gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "42",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 42.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 25.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 5.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "preComments": [
+ "",
+ "",
+ "// Create the outer ring gear for the planetary gearset"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "12",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 12.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 25.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 5.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "preComments": [
+ "",
+ "",
+ "// Create a central sun gear using a small helical gear"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "numPlanetGears",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Create the helical planet gears"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "body": [
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "12",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 12.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 25.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 5.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helicalGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "y",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "12",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 12.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "12",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 12.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "*",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2.7",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.7,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "numPlanetGears",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "axis",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "false",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": false
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular3d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Helical Planetary Gearset",
+ "// A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {},
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap
new file mode 100644
index 000000000..b8c99482d
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap
@@ -0,0 +1,2743 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed helical-planetary-gearset.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.4595413228372676,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.3468785716349652,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6820513307525256,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.794714081954828,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.8035068937274739,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6922518897698449,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5795891385675425,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.8035068937274739,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.9147618976851029,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.027424648887405,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 10.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.0943951023931953,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.9831400984355665,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.870477347233264,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.0943951023931953,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.2056501063508245,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.318312857553127,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 8.732661536483969,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {},
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6061300162478944,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.641507915383644,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6539072435565312,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 33.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.689240933009529,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 33.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.724618832145279,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 33.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.720395976965839,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7557296664188369,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7911075655545865,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 30.564315377693887,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 2.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {},
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": -25.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 42.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": 25.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 12.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "helicalGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 5.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": -25.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 12.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "arcDegrees": {
+ "value": {
+ "type": "Number",
+ "value": 360.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "axis": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ },
+ "center": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ },
+ "instances": {
+ "value": {
+ "type": "Number",
+ "value": 3.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "rotateDuplicates": {
+ "value": {
+ "type": "Bool",
+ "value": false
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "patternCircular3d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Solid",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap
new file mode 100644
index 000000000..4d3912123
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap
@@ -0,0 +1,32 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing helical-planetary-gearset.kcl
+---
+{
+ "helicalGear": {
+ "type": "Function",
+ "value": null
+ },
+ "numPlanetGears": {
+ "type": "Number",
+ "value": 3.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "ringGear": {
+ "type": "Function",
+ "value": null
+ },
+ "seg01": {
+ "type": "TagIdentifier",
+ "type": "TagIdentifier",
+ "value": "seg01"
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png
new file mode 100644
index 000000000..dacd1be22
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png differ
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_commands.snap
new file mode 100644
index 000000000..9fe007342
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_commands.snap
@@ -0,0 +1,5399 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands herringbone-gear.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 4.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000007426684721314096,
+ "y": 12.128696578449956,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 3.015462170559555,
+ "y": 11.747862298734521,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.128696578449956,
+ "end_radius": 13.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.128696578449956,
+ "end_radius": 13.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 75.60400909518157
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -1.5048,
+ "y": 13.4159,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 1.8779,
+ "y": 13.3688,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.128696578449956,
+ "end_radius": 13.5,
+ "angle": {
+ "unit": "degrees",
+ "value": 622.1735910904937
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.128696578449956,
+ "end_radius": 13.5,
+ "angle": {
+ "unit": "degrees",
+ "value": -83.43041800468791
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -3.0163,
+ "y": 11.7477,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -0.0008,
+ "y": 12.1287,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 24,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 24,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_clone",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 8.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 1,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap
new file mode 100644
index 000000000..f350126ab
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap
@@ -0,0 +1,6 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact graph flowchart herringbone-gear.kcl
+extension: md
+snapshot_kind: binary
+---
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..004011dac
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap.md
@@ -0,0 +1,119 @@
+```mermaid
+flowchart LR
+ subgraph path5 [Path]
+ 5["Path
[1136, 1206, 0]"]
+ 9["Segment
[1216, 1382, 0]"]
+ 11["Segment
[1392, 1477, 0]"]
+ 14["Segment
[1487, 1708, 0]"]
+ 15["Segment
[1795, 1881, 0]"]
+ 17["Segment
[2170, 2177, 0]"]
+ 22[Solid2d]
+ end
+ subgraph path6 [Path]
+ 6["Path
[1136, 1206, 0]"]
+ 10["Segment
[1216, 1382, 0]"]
+ 12["Segment
[1392, 1477, 0]"]
+ 13["Segment
[1487, 1708, 0]"]
+ 16["Segment
[1795, 1881, 0]"]
+ 18["Segment
[2170, 2177, 0]"]
+ 23[Solid2d]
+ end
+ subgraph path7 [Path]
+ 7["Path
[2256, 2291, 0]"]
+ 20["Segment
[2256, 2291, 0]"]
+ 21[Solid2d]
+ end
+ subgraph path8 [Path]
+ 8["Path
[2256, 2291, 0]"]
+ 19["Segment
[2256, 2291, 0]"]
+ 24[Solid2d]
+ end
+ 1["Plane
[1087, 1125, 0]"]
+ 2["Plane
[1087, 1125, 0]"]
+ 3["StartSketchOnPlane
[1073, 1126, 0]"]
+ 4["StartSketchOnPlane
[1073, 1126, 0]"]
+ 25["Sweep Loft
[2816, 2917, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 35["SweepEdge Opposite"]
+ 36["SweepEdge Adjacent"]
+ 37["SweepEdge Adjacent"]
+ 38["SweepEdge Adjacent"]
+ 39["SweepEdge Adjacent"]
+ 1 <--x 4
+ 1 --- 5
+ 1 --- 7
+ 2 <--x 3
+ 2 --- 6
+ 2 --- 8
+ 5 --- 9
+ 5 --- 11
+ 5 --- 14
+ 5 --- 15
+ 5 --- 17
+ 5 --- 22
+ 5 x---> 25
+ 6 --- 10
+ 6 --- 12
+ 6 --- 13
+ 6 --- 16
+ 6 --- 18
+ 6 --- 23
+ 6 ---- 25
+ 7 --- 20
+ 7 --- 21
+ 8 --- 19
+ 8 --- 24
+ 10 --- 28
+ 10 x--> 30
+ 10 --- 35
+ 10 --- 36
+ 12 --- 27
+ 12 x--> 30
+ 12 --- 33
+ 12 --- 39
+ 13 --- 26
+ 13 x--> 30
+ 13 --- 32
+ 13 --- 37
+ 16 --- 29
+ 16 x--> 30
+ 16 --- 34
+ 16 --- 38
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
+ 25 --- 31
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 25 --- 35
+ 25 --- 36
+ 25 --- 37
+ 25 --- 38
+ 25 --- 39
+ 32 <--x 26
+ 37 <--x 26
+ 38 <--x 26
+ 33 <--x 27
+ 37 <--x 27
+ 39 <--x 27
+ 35 <--x 28
+ 36 <--x 28
+ 39 <--x 28
+ 34 <--x 29
+ 38 <--x 29
+ 32 <--x 31
+ 33 <--x 31
+ 34 <--x 31
+ 35 <--x 31
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap
new file mode 100644
index 000000000..d201a6625
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap
@@ -0,0 +1,2773 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing herringbone-gear.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "circle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Create a center hole with an 8mm diameter",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a rotated gear sketch on an offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch that has been rotated by the helix angle"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "clone",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "z",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "1": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Loft each rotated gear sketch together to form a herringbone gear",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch at the total gear height that reverses the angle direction"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "vDegree",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "9": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a herringbone gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 25.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "40",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 40.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "8",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 8.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Herringbone Gear",
+ "// A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "0": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap
new file mode 100644
index 000000000..94bcf3b22
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap
@@ -0,0 +1,621 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed herringbone-gear.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.128696578449956,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.3195388864186572,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.128696578449956,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6824973989225336,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.4312399585462943,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.82212373908208,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.128696578449956,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5708662987058406,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.128696578449956,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "clone",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {},
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "vDegree": {
+ "value": {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 8.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": 40.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 25.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap
new file mode 100644
index 000000000..b9a06314d
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap
@@ -0,0 +1,10 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing herringbone-gear.kcl
+---
+{
+ "herringboneGear": {
+ "type": "Function",
+ "value": null
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png
new file mode 100644
index 000000000..2b2201dfd
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png differ
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_commands.snap
new file mode 100644
index 000000000..1b6502315
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_commands.snap
@@ -0,0 +1,8971 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands herringbone-planetary-gearset.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 4.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 4.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000008020819499019225,
+ "y": 13.098992304725952,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 2.4458701745920246,
+ "y": 12.86861758264309,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000008020819499019225,
+ "y": 13.098992304725952,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -2.4458701745920233,
+ "y": 12.86861758264309,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 79.23845407148335
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 100.76154592851665
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.3178,
+ "y": 14.8198,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.4902,
+ "y": 14.992,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.3178,
+ "y": 14.8198,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.0442,
+ "y": 14.1264,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 618.7643201493639
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": -90.47413392211939
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 618.7643201493639
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 13.098992304725952,
+ "end_radius": 15.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 608.0027742208474
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.4801,
+ "y": 12.309,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.103,
+ "y": 12.9291,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.4801,
+ "y": 12.309,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -6.6997,
+ "y": 11.256,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 17,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 17,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 17,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 17,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 4.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 4.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_clone",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_clone",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 8.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 8.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 1,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 1,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 4.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 0.0000000000000025844862830173056,
+ "y": 42.207864093005846,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": -2.627045743080315,
+ "y": 42.12603021835093,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 42.207864093005846,
+ "end_radius": 45.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 90.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 42.207864093005846,
+ "end_radius": 45.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 93.56843420271129
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -2.9769,
+ "y": 44.9014,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -5.7658,
+ "y": 44.6291,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 42.207864093005846,
+ "end_radius": 45.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 626.4283375475447
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 42.207864093005846,
+ "end_radius": 45.0,
+ "angle": {
+ "unit": "degrees",
+ "value": 622.8599033448335
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -4.5635,
+ "y": 41.9604,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -7.1663,
+ "y": 41.5951,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 57,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 57,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 4.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 100.0,
+ "clobber": false,
+ "hide": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "plane_set_color",
+ "plane_id": "[uuid]",
+ "color": {
+ "r": 0.6,
+ "g": 0.6,
+ "b": 0.6,
+ "a": 0.3
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 50.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 50.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 50.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 50.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_clone",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_get_all_child_uuids",
+ "entity_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 8.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "loft",
+ "section_ids": [
+ "[uuid]",
+ "[uuid]",
+ "[uuid]"
+ ],
+ "v_degree": 1,
+ "bez_approximate_rational": false,
+ "base_curve_index": null,
+ "tolerance": 0.0000001
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 0.0,
+ "y": 28.95,
+ "z": 0.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 3,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": false
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap
new file mode 100644
index 000000000..5126d951a
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap
@@ -0,0 +1,6 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact graph flowchart herringbone-planetary-gearset.kcl
+extension: md
+snapshot_kind: binary
+---
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..1d94f8a0b
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap.md
@@ -0,0 +1,315 @@
+```mermaid
+flowchart LR
+ subgraph path17 [Path]
+ 17["Path
[1219, 1289, 0]"]
+ 29["Segment
[1299, 1465, 0]"]
+ 35["Segment
[1475, 1560, 0]"]
+ 38["Segment
[1570, 1791, 0]"]
+ 42["Segment
[1878, 1964, 0]"]
+ 45["Segment
[2253, 2260, 0]"]
+ 67[Solid2d]
+ end
+ subgraph path18 [Path]
+ 18["Path
[1219, 1289, 0]"]
+ 31["Segment
[1299, 1465, 0]"]
+ 36["Segment
[1475, 1560, 0]"]
+ 39["Segment
[1570, 1791, 0]"]
+ 41["Segment
[1878, 1964, 0]"]
+ 48["Segment
[2253, 2260, 0]"]
+ 68[Solid2d]
+ end
+ subgraph path19 [Path]
+ 19["Path
[1219, 1289, 0]"]
+ 30["Segment
[1299, 1465, 0]"]
+ 34["Segment
[1475, 1560, 0]"]
+ 40["Segment
[1570, 1791, 0]"]
+ 44["Segment
[1878, 1964, 0]"]
+ 46["Segment
[2253, 2260, 0]"]
+ 70[Solid2d]
+ end
+ subgraph path20 [Path]
+ 20["Path
[1219, 1289, 0]"]
+ 32["Segment
[1299, 1465, 0]"]
+ 33["Segment
[1475, 1560, 0]"]
+ 37["Segment
[1570, 1791, 0]"]
+ 43["Segment
[1878, 1964, 0]"]
+ 47["Segment
[2253, 2260, 0]"]
+ 71[Solid2d]
+ end
+ subgraph path21 [Path]
+ 21["Path
[2339, 2374, 0]"]
+ 51["Segment
[2339, 2374, 0]"]
+ 65[Solid2d]
+ end
+ subgraph path22 [Path]
+ 22["Path
[2339, 2374, 0]"]
+ 49["Segment
[2339, 2374, 0]"]
+ 72[Solid2d]
+ end
+ subgraph path23 [Path]
+ 23["Path
[2339, 2374, 0]"]
+ 50["Segment
[2339, 2374, 0]"]
+ 75[Solid2d]
+ end
+ subgraph path24 [Path]
+ 24["Path
[2339, 2374, 0]"]
+ 52["Segment
[2339, 2374, 0]"]
+ 76[Solid2d]
+ end
+ subgraph path25 [Path]
+ 25["Path
[3843, 3913, 0]"]
+ 53["Segment
[3923, 4089, 0]"]
+ 56["Segment
[4099, 4184, 0]"]
+ 58["Segment
[4194, 4415, 0]"]
+ 59["Segment
[4502, 4588, 0]"]
+ 61["Segment
[4877, 4884, 0]"]
+ 69[Solid2d]
+ end
+ subgraph path26 [Path]
+ 26["Path
[3843, 3913, 0]"]
+ 54["Segment
[3923, 4089, 0]"]
+ 55["Segment
[4099, 4184, 0]"]
+ 57["Segment
[4194, 4415, 0]"]
+ 60["Segment
[4502, 4588, 0]"]
+ 62["Segment
[4877, 4884, 0]"]
+ 74[Solid2d]
+ end
+ subgraph path27 [Path]
+ 27["Path
[5095, 5146, 0]"]
+ 64["Segment
[5095, 5146, 0]"]
+ 66[Solid2d]
+ end
+ subgraph path28 [Path]
+ 28["Path
[5095, 5146, 0]"]
+ 63["Segment
[5095, 5146, 0]"]
+ 73[Solid2d]
+ end
+ 1["Plane
[1170, 1208, 0]"]
+ 2["Plane
[1170, 1208, 0]"]
+ 3["Plane
[1170, 1208, 0]"]
+ 4["Plane
[1170, 1208, 0]"]
+ 5["Plane
[3794, 3832, 0]"]
+ 6["Plane
[3794, 3832, 0]"]
+ 7["Plane
[5046, 5084, 0]"]
+ 8["Plane
[5046, 5084, 0]"]
+ 9["StartSketchOnPlane
[1156, 1209, 0]"]
+ 10["StartSketchOnPlane
[1156, 1209, 0]"]
+ 11["StartSketchOnPlane
[3780, 3833, 0]"]
+ 12["StartSketchOnPlane
[5032, 5085, 0]"]
+ 13["StartSketchOnPlane
[3780, 3833, 0]"]
+ 14["StartSketchOnPlane
[1156, 1209, 0]"]
+ 15["StartSketchOnPlane
[1156, 1209, 0]"]
+ 16["StartSketchOnPlane
[5032, 5085, 0]"]
+ 77["Sweep Loft
[2899, 3000, 0]"]
+ 78["Sweep Loft
[2899, 3000, 0]"]
+ 79["Sweep Loft
[5671, 5772, 0]"]
+ 80[Wall]
+ 81[Wall]
+ 82[Wall]
+ 83[Wall]
+ 84[Wall]
+ 85[Wall]
+ 86[Wall]
+ 87[Wall]
+ 88[Wall]
+ 89["Cap Start"]
+ 90["Cap Start"]
+ 91["Cap Start"]
+ 92["Cap End"]
+ 93["Cap End"]
+ 94["Cap End"]
+ 95["SweepEdge Opposite"]
+ 96["SweepEdge Opposite"]
+ 97["SweepEdge Opposite"]
+ 98["SweepEdge Opposite"]
+ 99["SweepEdge Opposite"]
+ 100["SweepEdge Opposite"]
+ 101["SweepEdge Opposite"]
+ 102["SweepEdge Opposite"]
+ 103["SweepEdge Opposite"]
+ 104["SweepEdge Adjacent"]
+ 105["SweepEdge Adjacent"]
+ 106["SweepEdge Adjacent"]
+ 107["SweepEdge Adjacent"]
+ 108["SweepEdge Adjacent"]
+ 109["SweepEdge Adjacent"]
+ 110["SweepEdge Adjacent"]
+ 111["SweepEdge Adjacent"]
+ 112["SweepEdge Adjacent"]
+ 1 <--x 15
+ 1 --- 18
+ 1 --- 24
+ 2 <--x 9
+ 2 --- 17
+ 2 --- 22
+ 3 <--x 14
+ 3 --- 20
+ 3 --- 21
+ 4 <--x 10
+ 4 --- 19
+ 4 --- 23
+ 5 <--x 13
+ 5 --- 25
+ 6 <--x 11
+ 6 --- 26
+ 7 <--x 16
+ 7 --- 27
+ 8 <--x 12
+ 8 --- 28
+ 17 --- 29
+ 17 --- 35
+ 17 --- 38
+ 17 --- 42
+ 17 --- 45
+ 17 --- 67
+ 17 x---> 77
+ 18 --- 31
+ 18 --- 36
+ 18 --- 39
+ 18 --- 41
+ 18 --- 48
+ 18 --- 68
+ 18 x---> 78
+ 19 --- 30
+ 19 --- 34
+ 19 --- 40
+ 19 --- 44
+ 19 --- 46
+ 19 --- 70
+ 19 ---- 78
+ 20 --- 32
+ 20 --- 33
+ 20 --- 37
+ 20 --- 43
+ 20 --- 47
+ 20 --- 71
+ 20 ---- 77
+ 21 --- 51
+ 21 --- 65
+ 22 --- 49
+ 22 --- 72
+ 23 --- 50
+ 23 --- 75
+ 24 --- 52
+ 24 --- 76
+ 25 --- 53
+ 25 --- 56
+ 25 --- 58
+ 25 --- 59
+ 25 --- 61
+ 25 --- 69
+ 26 --- 54
+ 26 --- 55
+ 26 --- 57
+ 26 --- 60
+ 26 --- 62
+ 26 --- 74
+ 27 --- 64
+ 27 --- 66
+ 27 ---- 79
+ 28 --- 63
+ 28 --- 73
+ 28 x---> 79
+ 30 --- 85
+ 30 x--> 89
+ 30 --- 101
+ 30 --- 109
+ 32 --- 83
+ 32 x--> 91
+ 32 --- 98
+ 32 --- 104
+ 33 --- 81
+ 33 x--> 91
+ 33 --- 97
+ 33 --- 106
+ 34 --- 84
+ 34 x--> 89
+ 34 --- 102
+ 34 --- 108
+ 37 --- 80
+ 37 x--> 91
+ 37 --- 96
+ 37 --- 107
+ 40 --- 86
+ 40 x--> 89
+ 40 --- 100
+ 40 --- 110
+ 43 --- 82
+ 43 x--> 91
+ 43 --- 95
+ 43 --- 105
+ 44 --- 87
+ 44 x--> 89
+ 44 --- 99
+ 44 --- 111
+ 64 --- 88
+ 64 x--> 90
+ 64 --- 103
+ 64 --- 112
+ 77 --- 80
+ 77 --- 81
+ 77 --- 82
+ 77 --- 83
+ 77 --- 91
+ 77 --- 94
+ 77 --- 95
+ 77 --- 96
+ 77 --- 97
+ 77 --- 98
+ 77 --- 104
+ 77 --- 105
+ 77 --- 106
+ 77 --- 107
+ 78 --- 84
+ 78 --- 85
+ 78 --- 86
+ 78 --- 87
+ 78 --- 89
+ 78 --- 92
+ 78 --- 99
+ 78 --- 100
+ 78 --- 101
+ 78 --- 102
+ 78 --- 108
+ 78 --- 109
+ 78 --- 110
+ 78 --- 111
+ 79 --- 88
+ 79 --- 90
+ 79 --- 93
+ 79 --- 103
+ 79 --- 112
+ 96 <--x 80
+ 105 <--x 80
+ 107 <--x 80
+ 97 <--x 81
+ 106 <--x 81
+ 107 <--x 81
+ 95 <--x 82
+ 105 <--x 82
+ 98 <--x 83
+ 104 <--x 83
+ 106 <--x 83
+ 102 <--x 84
+ 108 <--x 84
+ 110 <--x 84
+ 101 <--x 85
+ 108 <--x 85
+ 109 <--x 85
+ 100 <--x 86
+ 110 <--x 86
+ 111 <--x 86
+ 99 <--x 87
+ 111 <--x 87
+ 103 <--x 88
+ 112 <--x 88
+ 99 <--x 92
+ 100 <--x 92
+ 101 <--x 92
+ 102 <--x 92
+ 103 <--x 93
+ 95 <--x 94
+ 96 <--x 94
+ 97 <--x 94
+ 98 <--x 94
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap
new file mode 100644
index 000000000..63325ef01
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap
@@ -0,0 +1,6106 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing herringbone-planetary-gearset.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "circle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Create a center hole with an 8mm diameter",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a rotated gear sketch on an offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch that has been rotated by the helix angle"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "clone",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "z",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "1": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Loft each rotated gear sketch together to form a herringbone gear",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch at the total gear height that reverses the angle direction"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "vDegree",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "9": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a herringbone gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "acos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "220",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 220.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixCalc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offset",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetPlane",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.8",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.8,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "circle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a rotated gear sketch on an offset plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch on the base plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "offsetHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a rotated gear sketch on a middle interstitial plane"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "clone",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "z",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "1": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Loft each rotated gear sketch together to form a ring gear",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Draw a gear sketch at the total gear height that reverses the angle direction"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "vDegree",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "loft",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch001",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch002",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch003",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "9": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "",
+ "",
+ "// Define a function to create a ring gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "58",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 58.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "35",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 35.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "8",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 8.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "ringGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "preComments": [
+ "",
+ "",
+ "// Create the outer ring gear for the planetary gearset"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "18",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 18.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "35",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 35.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "8",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 8.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "preComments": [
+ "",
+ "",
+ "// Create a central sun gear using a small herringbone gear"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "numPlanetGears",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "4",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 4.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Create the herringbone planet gears"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "body": [
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "18",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 18.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "helixAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "35",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 35.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "8",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 8.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "herringboneGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "y",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "18",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 18.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.95",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.95,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "numPlanetGears",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "axis",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "false",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": false
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular3d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Herringbone Planetary Gearset",
+ "// A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {},
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap
new file mode 100644
index 000000000..ca28c2bbc
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap
@@ -0,0 +1,2086 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed herringbone-planetary-gearset.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.3829719177376907,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7586207358521024,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.725936704749948,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5381122956927422,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.725936704749948,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.913761113807154,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.9198621771937625,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.7320377681365566,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.9198621771937625,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 2.1076865862509684,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 13.098992304725952,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "clone",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {},
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "clone",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {},
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "vDegree": {
+ "value": {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "vDegree": {
+ "value": {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.5707963267948966,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 42.207864093005846,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6330772527729873,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 42.207864093005846,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6369984708360608,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 45.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6992793968141515,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 45.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.6791271079531653,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 42.207864093005846,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 1.741408033931256,
+ "ty": {
+ "type": "Known",
+ "type": "Angle",
+ "type": "Radians"
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 42.207864093005846,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "offsetPlane",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {
+ "offset": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGearSketch",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "offsetHeight": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "KclStdLibCall",
+ "name": "clone",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ },
+ "labeledArgs": {},
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "vDegree": {
+ "value": {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "loft",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "ringGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 8.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": -35.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 58.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 8.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": 35.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 18.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "herringboneGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 8.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "helixAngle": {
+ "value": {
+ "type": "Number",
+ "value": -35.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 18.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "arcDegrees": {
+ "value": {
+ "type": "Number",
+ "value": 360.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "axis": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 1.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ },
+ "center": {
+ "value": {
+ "type": "Array",
+ "value": [
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ }
+ ]
+ },
+ "sourceRange": []
+ },
+ "instances": {
+ "value": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "rotateDuplicates": {
+ "value": {
+ "type": "Bool",
+ "value": false
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "patternCircular3d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Solid",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap
new file mode 100644
index 000000000..3f578f0b0
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap
@@ -0,0 +1,32 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing herringbone-planetary-gearset.kcl
+---
+{
+ "herringboneGear": {
+ "type": "Function",
+ "value": null
+ },
+ "numPlanetGears": {
+ "type": "Number",
+ "value": 4.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "ringGear": {
+ "type": "Function",
+ "value": null
+ },
+ "seg01": {
+ "type": "TagIdentifier",
+ "type": "TagIdentifier",
+ "value": "seg01"
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png
new file mode 100644
index 000000000..2fe244002
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png differ
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap
new file mode 100644
index 000000000..bf61e9e75
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap
@@ -0,0 +1,4581 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands spur-gear.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 2.29128784747792,
+ "y": 1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 0.0,
+ "y": -2.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": -1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "relative": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 2.5,
+ "start": {
+ "unit": "degrees",
+ "value": 336.42182152179817
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": -0.0,
+ "y": 0.0
+ },
+ "radius": 2.5,
+ "start": {
+ "unit": "degrees",
+ "value": 180.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 23.578178478201835
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 15.282157688846944,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 15.282157688846944,
+ "end_radius": 17.25,
+ "angle": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 17.0977,
+ "y": 2.2871,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 15.282157688846944,
+ "end_radius": 17.25,
+ "angle": {
+ "unit": "degrees",
+ "value": -10.934457859443263
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 14.6032,
+ "y": 4.5045,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 20,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 6.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap
similarity index 61%
rename from rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap
rename to rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap
index ae5182eab..7798e4dd7 100644
--- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap
@@ -1,6 +1,6 @@
---
source: kcl-lib/src/simulation_tests.rs
-description: Artifact graph flowchart gear.kcl
+description: Artifact graph flowchart spur-gear.kcl
extension: md
snapshot_kind: binary
---
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..6493d4bba
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md
@@ -0,0 +1,100 @@
+```mermaid
+flowchart LR
+ subgraph path3 [Path]
+ 3["Path
[1065, 1171, 0]"]
+ 5["Segment
[1179, 1206, 0]"]
+ 6["Segment
[1214, 1242, 0]"]
+ 7["Segment
[1250, 1278, 0]"]
+ 8["Segment
[1286, 1362, 0]"]
+ 9["Segment
[1370, 1435, 0]"]
+ 10["Segment
[1443, 1450, 0]"]
+ 16[Solid2d]
+ end
+ subgraph path4 [Path]
+ 4["Path
[1601, 1663, 0]"]
+ 11["Segment
[1671, 1819, 0]"]
+ 12["Segment
[1827, 1900, 0]"]
+ 13["Segment
[1908, 2112, 0]"]
+ 14["Segment
[2194, 2268, 0]"]
+ 15["Segment
[2538, 2545, 0]"]
+ 17[Solid2d]
+ end
+ 1["Plane
[1040, 1057, 0]"]
+ 2["Plane
[1576, 1593, 0]"]
+ 18["Sweep Extrusion
[2697, 2725, 0]"]
+ 19[Wall]
+ 20[Wall]
+ 21[Wall]
+ 22[Wall]
+ 23["Cap Start"]
+ 24["Cap End"]
+ 25["SweepEdge Opposite"]
+ 26["SweepEdge Opposite"]
+ 27["SweepEdge Opposite"]
+ 28["SweepEdge Opposite"]
+ 29["SweepEdge Adjacent"]
+ 30["SweepEdge Adjacent"]
+ 31["SweepEdge Adjacent"]
+ 32["SweepEdge Adjacent"]
+ 1 --- 3
+ 2 --- 4
+ 3 --- 5
+ 3 --- 6
+ 3 --- 7
+ 3 --- 8
+ 3 --- 9
+ 3 --- 10
+ 3 --- 16
+ 4 --- 11
+ 4 --- 12
+ 4 --- 13
+ 4 --- 14
+ 4 --- 15
+ 4 --- 17
+ 4 ---- 18
+ 11 --- 22
+ 11 x--> 23
+ 11 --- 25
+ 11 --- 29
+ 12 --- 21
+ 12 x--> 23
+ 12 --- 26
+ 12 --- 30
+ 13 --- 20
+ 13 x--> 23
+ 13 --- 27
+ 13 --- 31
+ 14 --- 19
+ 14 x--> 23
+ 14 --- 28
+ 14 --- 32
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 --- 23
+ 18 --- 24
+ 18 --- 25
+ 18 --- 26
+ 18 --- 27
+ 18 --- 28
+ 18 --- 29
+ 18 --- 30
+ 18 --- 31
+ 18 --- 32
+ 28 <--x 19
+ 31 <--x 19
+ 32 <--x 19
+ 27 <--x 20
+ 30 <--x 20
+ 31 <--x 20
+ 26 <--x 21
+ 29 <--x 21
+ 30 <--x 21
+ 25 <--x 22
+ 29 <--x 22
+ 25 <--x 24
+ 26 <--x 24
+ 27 <--x 24
+ 28 <--x 24
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap
new file mode 100644
index 000000000..d7e0a46a9
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap
@@ -0,0 +1,2922 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing spur-gear.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "spurGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Define gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Define the constants of the keyway and the bore hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 5.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeDiam",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "asin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "sin",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayWidth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "yLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "keywayDepth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "xLine",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "argument": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.0,
+ "suffix": "None"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleStart",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angleEnd",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arc",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Sketch the keyway and center hole"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "argument": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "holeWithKeyway",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "extrude",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Subtract the keyway sketch from the gear sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "8": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Extrude the gear to the specified height",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "11": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a spur gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "21",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 21.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "6",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 6.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "spurGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Spur Gear",
+ "// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "0": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap
new file mode 100644
index 000000000..e4d6c748d
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap
@@ -0,0 +1,309 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed spur-gear.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.282157688846944,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 7.619047619047619,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 17.25,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 17.142857142857142,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 15.282157688846944,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 6.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "extrude",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "spurGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 6.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 21.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap
new file mode 100644
index 000000000..b1d73e5e7
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap
@@ -0,0 +1,10 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing spur-gear.kcl
+---
+{
+ "spurGear": {
+ "type": "Function",
+ "value": null
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png
new file mode 100644
index 000000000..0746e497e
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png differ
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap
new file mode 100644
index 000000000..2cf210e8e
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap
@@ -0,0 +1,13582 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact commands spur-reduction-gearset.kcl
+---
+[
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "edge_lines_visible",
+ "hidden": false
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "make_plane",
+ "origin": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "x_axis": {
+ "x": 1.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "y_axis": {
+ "x": 0.0,
+ "y": 1.0,
+ "z": 0.0
+ },
+ "size": 60.0,
+ "clobber": false,
+ "hide": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 12.371270510018954,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 37.113811530056864,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.371270510018954,
+ "end_radius": 14.25,
+ "angle": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 37.113811530056864,
+ "end_radius": 39.75,
+ "angle": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "reverse": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 14.0582,
+ "y": 2.3303,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 39.6904,
+ "y": 2.1754,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 12.371270510018954,
+ "end_radius": 14.25,
+ "angle": {
+ "unit": "degrees",
+ "value": -13.586960511554224
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "circular_involute",
+ "start_radius": 37.113811530056864,
+ "end_radius": 39.75,
+ "angle": {
+ "unit": "degrees",
+ "value": -4.520837503047772
+ },
+ "reverse": true
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 11.5359,
+ "y": 4.469,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "line",
+ "end": {
+ "x": 36.8325,
+ "y": 4.5609,
+ "z": 0.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 16,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "entity_circular_pattern",
+ "entity_id": "[uuid]",
+ "axis": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "center": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "num_repetitions": 50,
+ "arc_degrees": 360.0,
+ "rotate_duplicates": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_visible",
+ "object_id": "[uuid]",
+ "hidden": true
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid2d_add_hole",
+ "object_id": "[uuid]",
+ "hole_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "close_path",
+ "path_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 5.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extend_path",
+ "path": "[uuid]",
+ "segment": {
+ "type": "arc",
+ "center": {
+ "x": 0.0,
+ "y": 0.0
+ },
+ "radius": 5.0,
+ "start": {
+ "unit": "degrees",
+ "value": 0.0
+ },
+ "end": {
+ "unit": "degrees",
+ "value": 360.0
+ },
+ "relative": false
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 5.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "move_path_pen",
+ "path": "[uuid]",
+ "to": {
+ "x": 5.0,
+ "y": 0.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "start_path"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 1.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 9.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 7.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": {
+ "property": {
+ "x": 52.3,
+ "y": 0.0,
+ "z": 0.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_rpy": null,
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "set_object_transform",
+ "object_id": "[uuid]",
+ "transforms": [
+ {
+ "translate": null,
+ "rotate_rpy": {
+ "property": {
+ "x": 0.0,
+ "y": 0.0,
+ "z": 3.0
+ },
+ "set": false,
+ "is_local": true
+ },
+ "rotate_angle_axis": null,
+ "scale": null
+ }
+ ]
+ }
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap
new file mode 100644
index 000000000..84c1407f1
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap
@@ -0,0 +1,6 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Artifact graph flowchart spur-reduction-gearset.kcl
+extension: md
+snapshot_kind: binary
+---
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md
new file mode 100644
index 000000000..c4649ef10
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md
@@ -0,0 +1,175 @@
+```mermaid
+flowchart LR
+ subgraph path3 [Path]
+ 3["Path
[625, 687, 0]"]
+ 7["Segment
[695, 843, 0]"]
+ 9["Segment
[851, 924, 0]"]
+ 12["Segment
[932, 1136, 0]"]
+ 14["Segment
[1218, 1292, 0]"]
+ 15["Segment
[1562, 1569, 0]"]
+ 19[Solid2d]
+ end
+ subgraph path4 [Path]
+ 4["Path
[625, 687, 0]"]
+ 8["Segment
[695, 843, 0]"]
+ 10["Segment
[851, 924, 0]"]
+ 11["Segment
[932, 1136, 0]"]
+ 13["Segment
[1218, 1292, 0]"]
+ 16["Segment
[1562, 1569, 0]"]
+ 21[Solid2d]
+ end
+ subgraph path5 [Path]
+ 5["Path
[1653, 1688, 0]"]
+ 18["Segment
[1653, 1688, 0]"]
+ 20[Solid2d]
+ end
+ subgraph path6 [Path]
+ 6["Path
[1653, 1688, 0]"]
+ 17["Segment
[1653, 1688, 0]"]
+ 22[Solid2d]
+ end
+ 1["Plane
[600, 617, 0]"]
+ 2["Plane
[600, 617, 0]"]
+ 23["Sweep Extrusion
[1745, 1773, 0]"]
+ 24["Sweep Extrusion
[1745, 1773, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30[Wall]
+ 31[Wall]
+ 32[Wall]
+ 33["Cap Start"]
+ 34["Cap Start"]
+ 35["Cap End"]
+ 36["Cap End"]
+ 37["SweepEdge Opposite"]
+ 38["SweepEdge Opposite"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Opposite"]
+ 45["SweepEdge Adjacent"]
+ 46["SweepEdge Adjacent"]
+ 47["SweepEdge Adjacent"]
+ 48["SweepEdge Adjacent"]
+ 49["SweepEdge Adjacent"]
+ 50["SweepEdge Adjacent"]
+ 51["SweepEdge Adjacent"]
+ 52["SweepEdge Adjacent"]
+ 1 --- 3
+ 1 --- 5
+ 2 --- 4
+ 2 --- 6
+ 3 --- 7
+ 3 --- 9
+ 3 --- 12
+ 3 --- 14
+ 3 --- 15
+ 3 --- 19
+ 3 ---- 24
+ 4 --- 8
+ 4 --- 10
+ 4 --- 11
+ 4 --- 13
+ 4 --- 16
+ 4 --- 21
+ 4 ---- 23
+ 5 --- 18
+ 5 --- 20
+ 6 --- 17
+ 6 --- 22
+ 7 --- 29
+ 7 x--> 33
+ 7 --- 42
+ 7 --- 49
+ 8 --- 28
+ 8 x--> 34
+ 8 --- 38
+ 8 --- 46
+ 9 --- 30
+ 9 x--> 33
+ 9 --- 43
+ 9 --- 50
+ 10 --- 26
+ 10 x--> 34
+ 10 --- 40
+ 10 --- 45
+ 11 --- 25
+ 11 x--> 34
+ 11 --- 37
+ 11 --- 47
+ 12 --- 31
+ 12 x--> 33
+ 12 --- 41
+ 12 --- 51
+ 13 --- 27
+ 13 x--> 34
+ 13 --- 39
+ 13 --- 48
+ 14 --- 32
+ 14 x--> 33
+ 14 --- 44
+ 14 --- 52
+ 23 --- 25
+ 23 --- 26
+ 23 --- 27
+ 23 --- 28
+ 23 --- 34
+ 23 --- 36
+ 23 --- 37
+ 23 --- 38
+ 23 --- 39
+ 23 --- 40
+ 23 --- 45
+ 23 --- 46
+ 23 --- 47
+ 23 --- 48
+ 24 --- 29
+ 24 --- 30
+ 24 --- 31
+ 24 --- 32
+ 24 --- 33
+ 24 --- 35
+ 24 --- 41
+ 24 --- 42
+ 24 --- 43
+ 24 --- 44
+ 24 --- 49
+ 24 --- 50
+ 24 --- 51
+ 24 --- 52
+ 37 <--x 25
+ 45 <--x 25
+ 47 <--x 25
+ 40 <--x 26
+ 45 <--x 26
+ 46 <--x 26
+ 39 <--x 27
+ 47 <--x 27
+ 48 <--x 27
+ 38 <--x 28
+ 46 <--x 28
+ 42 <--x 29
+ 49 <--x 29
+ 43 <--x 30
+ 49 <--x 30
+ 50 <--x 30
+ 41 <--x 31
+ 50 <--x 31
+ 51 <--x 31
+ 44 <--x 32
+ 51 <--x 32
+ 52 <--x 32
+ 41 <--x 35
+ 42 <--x 35
+ 43 <--x 35
+ 44 <--x 35
+ 37 <--x 36
+ 38 <--x 36
+ 39 <--x 36
+ 40 <--x 36
+```
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap
new file mode 100644
index 000000000..ffd8365a1
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap
@@ -0,0 +1,2348 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Result of parsing spur-reduction-gearset.kcl
+---
+{
+ "Ok": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "spurGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": {
+ "body": [
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "// Calculate gear parameters"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "addendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "deddendum",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.25",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.25,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "*",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "cos",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pitchDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "*",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "declaration": {
+ "commentStart": 0,
+ "end": 0,
+ "id": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "init": {
+ "body": [
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startSketchOn",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "XY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "at",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startProfile",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tag",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "TagDeclarator",
+ "type": "TagDeclarator",
+ "value": "seg01"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "160",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 160.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "startRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endRadius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tipDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "argument": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "atan",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndY",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "segEndX",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "seg01",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ "commentStart": 0,
+ "end": 0,
+ "operator": "-",
+ "start": 0,
+ "type": "UnaryExpression",
+ "type": "UnaryExpression"
+ },
+ "operator": "-",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "180",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 180.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "reverse",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "involuteCircular",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "endAbsolute",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "angle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "/",
+ "right": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "baseDiameter",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "polar",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "line",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "instances",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "arcDegrees",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "360",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 360.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotateDuplicates",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "true",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": true
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "patternCircular2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "PipeSubstitution",
+ "type": "PipeSubstitution"
+ }
+ },
+ {
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "close",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "tool",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "center",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "elements": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "0",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 0.0,
+ "suffix": "None"
+ }
+ }
+ ],
+ "end": 0,
+ "start": 0,
+ "type": "ArrayExpression",
+ "type": "ArrayExpression"
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "radius",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 5.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "circle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "subtract2d",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "length",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "extrude",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "4": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Position the end line of the sketch at the start of the next tooth",
+ "style": "line"
+ }
+ }
+ ],
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch",
+ "style": "line"
+ }
+ }
+ ],
+ "7": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Subtract a 10mm diameter center hole from the gear",
+ "style": "line"
+ }
+ }
+ ],
+ "8": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Extrude the gear to the specified height",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "const",
+ "preComments": [
+ "",
+ "",
+ "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "argument": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearSketch",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "ReturnStatement",
+ "type": "ReturnStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "5": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0
+ },
+ "commentStart": 0,
+ "end": 0,
+ "params": [
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ }
+ },
+ {
+ "type": "Parameter",
+ "identifier": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "FunctionExpression",
+ "type": "FunctionExpression"
+ },
+ "start": 0,
+ "type": "VariableDeclarator"
+ },
+ "end": 0,
+ "kind": "fn",
+ "preComments": [
+ "// Define a function to create a spur gear"
+ ],
+ "start": 0,
+ "type": "VariableDeclaration",
+ "type": "VariableDeclaration"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "17",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 17.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "9",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 9.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "spurGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ "preComments": [
+ "",
+ "",
+ "// Model a small gear"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ },
+ {
+ "commentStart": 0,
+ "end": 0,
+ "expression": {
+ "body": [
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "nTeeth",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "51",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 51.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "module",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "pressureAngle",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "14",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 14.0,
+ "suffix": "None"
+ }
+ }
+ },
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "gearHeight",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "7",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 7.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "spurGear",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "x",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "left": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "51",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 51.0,
+ "suffix": "None"
+ }
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "17",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 17.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "/",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "2",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 2.0,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "*",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.5",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.5,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ },
+ "operator": "+",
+ "right": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "1.3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 1.3,
+ "suffix": "None"
+ }
+ },
+ "start": 0,
+ "type": "BinaryExpression",
+ "type": "BinaryExpression"
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "translate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ },
+ {
+ "arguments": [
+ {
+ "type": "LabeledArg",
+ "label": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "yaw",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "arg": {
+ "commentStart": 0,
+ "end": 0,
+ "raw": "3",
+ "start": 0,
+ "type": "Literal",
+ "type": "Literal",
+ "value": {
+ "value": 3.0,
+ "suffix": "None"
+ }
+ }
+ }
+ ],
+ "callee": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "rotate",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name"
+ },
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "CallExpressionKw",
+ "type": "CallExpressionKw",
+ "unlabeled": null
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "nonCodeMeta": {
+ "nonCodeNodes": {
+ "0": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "blockComment",
+ "value": "Translate the larger gear by the combined pitch radius of both gears, plus a small gap",
+ "style": "line"
+ }
+ }
+ ],
+ "1": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLineBlockComment",
+ "value": "Rotate the gear so that the teeth mesh but do not intersect",
+ "style": "line"
+ }
+ }
+ ]
+ },
+ "startNodes": []
+ },
+ "start": 0,
+ "type": "PipeExpression",
+ "type": "PipeExpression"
+ },
+ "preComments": [
+ "",
+ "",
+ "// Model a larger gear with the same module"
+ ],
+ "start": 0,
+ "type": "ExpressionStatement",
+ "type": "ExpressionStatement"
+ }
+ ],
+ "commentStart": 0,
+ "end": 0,
+ "innerAttrs": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "settings",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "preComments": [
+ "// Spur Reduction Gearset",
+ "// A pair of spur gears meshed together, with an equal module and different number of teeth",
+ "",
+ "",
+ "// Set units"
+ ],
+ "properties": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "key": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "defaultLengthUnit",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "start": 0,
+ "type": "ObjectProperty",
+ "value": {
+ "abs_path": false,
+ "commentStart": 0,
+ "end": 0,
+ "name": {
+ "commentStart": 0,
+ "end": 0,
+ "name": "mm",
+ "start": 0,
+ "type": "Identifier"
+ },
+ "path": [],
+ "start": 0,
+ "type": "Name",
+ "type": "Name"
+ }
+ }
+ ],
+ "start": 0,
+ "type": "Annotation"
+ }
+ ],
+ "nonCodeMeta": {
+ "nonCodeNodes": {},
+ "startNodes": [
+ {
+ "commentStart": 0,
+ "end": 0,
+ "start": 0,
+ "type": "NonCodeNode",
+ "value": {
+ "type": "newLine"
+ }
+ }
+ ]
+ },
+ "start": 0
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap
new file mode 100644
index 000000000..4f647a71f
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap
@@ -0,0 +1,586 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Operations executed spur-reduction-gearset.kcl
+---
+[
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {},
+ "name": "startSketchOn",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Plane",
+ "artifact_id": "[uuid]"
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.371270510018954,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 0.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 37.113811530056864,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 9.411764705882353,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 14.25,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 3.1372549019607843,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 39.75,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 21.176470588235293,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 12.371270510018954,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "polar",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "angle": {
+ "value": {
+ "type": "Number",
+ "value": 7.0588235294117645,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 37.113811530056864,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "tool": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "subtract2d",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 9.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "extrude",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "labeledArgs": {
+ "length": {
+ "value": {
+ "type": "Number",
+ "value": 7.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ "name": "extrude",
+ "sourceRange": [],
+ "type": "StdLibCall",
+ "unlabeledArg": {
+ "value": {
+ "type": "Sketch",
+ "value": {
+ "artifactId": "[uuid]"
+ }
+ },
+ "sourceRange": []
+ }
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "spurGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 9.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 17.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupBegin",
+ "group": {
+ "type": "FunctionCall",
+ "name": "spurGear",
+ "functionSourceRange": [],
+ "unlabeledArg": null,
+ "labeledArgs": {
+ "gearHeight": {
+ "value": {
+ "type": "Number",
+ "value": 7.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "module": {
+ "value": {
+ "type": "Number",
+ "value": 1.5,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "nTeeth": {
+ "value": {
+ "type": "Number",
+ "value": 51.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ "pressureAngle": {
+ "value": {
+ "type": "Number",
+ "value": 14.0,
+ "ty": {
+ "type": "Default",
+ "len": {
+ "type": "Mm"
+ },
+ "angle": {
+ "type": "Degrees"
+ }
+ }
+ },
+ "sourceRange": []
+ }
+ }
+ },
+ "sourceRange": []
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ },
+ {
+ "type": "GroupEnd"
+ }
+]
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap
new file mode 100644
index 000000000..592ccc8fc
--- /dev/null
+++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap
@@ -0,0 +1,15 @@
+---
+source: kcl-lib/src/simulation_tests.rs
+description: Variables in memory after executing spur-reduction-gearset.kcl
+---
+{
+ "seg01": {
+ "type": "TagIdentifier",
+ "type": "TagIdentifier",
+ "value": "seg01"
+ },
+ "spurGear": {
+ "type": "Function",
+ "value": null
+ }
+}
diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png
new file mode 100644
index 000000000..1814a4c11
Binary files /dev/null and b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png differ