Round floats in simulation tests to 3dp (#7211)

Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
Nick Cameron
2025-05-26 11:17:12 +12:00
committed by GitHub
parent fa9d5a0104
commit 0c2785df67
186 changed files with 15397 additions and 15398 deletions

View File

@ -186,14 +186,14 @@ async fn execute_test(test: &Test, render_to_png: bool, export_step: bool) {
let mem_result = catch_unwind(AssertUnwindSafe(|| { let mem_result = catch_unwind(AssertUnwindSafe(|| {
assert_snapshot(test, "Variables in memory after executing", || { assert_snapshot(test, "Variables in memory after executing", || {
insta::assert_json_snapshot!("program_memory", outcome.variables, { insta::assert_json_snapshot!("program_memory", outcome.variables, {
".**.value" => rounded_redaction(4), ".**.value" => rounded_redaction(3),
".**[].value" => rounded_redaction(4), ".**[].value" => rounded_redaction(3),
".**.from[]" => rounded_redaction(4), ".**.from[]" => rounded_redaction(3),
".**.to[]" => rounded_redaction(4), ".**.to[]" => rounded_redaction(3),
".**.center[]" => rounded_redaction(4), ".**.center[]" => rounded_redaction(3),
".**[].x[]" => rounded_redaction(4), ".**[].x[]" => rounded_redaction(3),
".**[].y[]" => rounded_redaction(4), ".**[].y[]" => rounded_redaction(3),
".**[].z[]" => rounded_redaction(4), ".**[].z[]" => rounded_redaction(3),
".**.sourceRange" => Vec::new(), ".**.sourceRange" => Vec::new(),
}) })
}) })
@ -281,11 +281,11 @@ fn assert_common_snapshots(
let result1 = catch_unwind(AssertUnwindSafe(|| { let result1 = catch_unwind(AssertUnwindSafe(|| {
assert_snapshot(test, "Operations executed", || { assert_snapshot(test, "Operations executed", || {
insta::assert_json_snapshot!("ops", operations, { insta::assert_json_snapshot!("ops", operations, {
"[].*.unlabeledArg.*.value.**[].from[]" => rounded_redaction(4), "[].*.unlabeledArg.*.value.**[].from[]" => rounded_redaction(3),
"[].*.unlabeledArg.*.value.**[].to[]" => rounded_redaction(4), "[].*.unlabeledArg.*.value.**[].to[]" => rounded_redaction(3),
"[].**.value.value" => rounded_redaction(4), "[].**.value.value" => rounded_redaction(3),
"[].*.labeledArgs.*.value.**[].from[]" => rounded_redaction(4), "[].*.labeledArgs.*.value.**[].from[]" => rounded_redaction(3),
"[].*.labeledArgs.*.value.**[].to[]" => rounded_redaction(4), "[].*.labeledArgs.*.value.**[].to[]" => rounded_redaction(3),
".**.sourceRange" => Vec::new(), ".**.sourceRange" => Vec::new(),
".**.functionSourceRange" => Vec::new(), ".**.functionSourceRange" => Vec::new(),
".**.moduleId" => 0, ".**.moduleId" => 0,
@ -295,10 +295,10 @@ fn assert_common_snapshots(
let result2 = catch_unwind(AssertUnwindSafe(|| { let result2 = catch_unwind(AssertUnwindSafe(|| {
assert_snapshot(test, "Artifact commands", || { assert_snapshot(test, "Artifact commands", || {
insta::assert_json_snapshot!("artifact_commands", artifact_commands, { insta::assert_json_snapshot!("artifact_commands", artifact_commands, {
"[].command.**.value" => rounded_redaction(4), "[].command.**.value" => rounded_redaction(3),
"[].command.**.x" => rounded_redaction(4), "[].command.**.x" => rounded_redaction(3),
"[].command.**.y" => rounded_redaction(4), "[].command.**.y" => rounded_redaction(3),
"[].command.**.z" => rounded_redaction(4), "[].command.**.z" => rounded_redaction(3),
".**.range" => Vec::new(), ".**.range" => Vec::new(),
}); });
}) })

View File

@ -157,8 +157,8 @@ description: Artifact commands angled_line.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 3.7618, "x": 3.762,
"y": -11.7631, "y": -11.763,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true

View File

@ -137,8 +137,8 @@ description: Variables in memory after executing angled_line.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
11.6718, 11.672,
-10.6731 -10.673
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -151,13 +151,13 @@ description: Variables in memory after executing angled_line.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
11.6718, 11.672,
-10.6731 -10.673
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.3482, -1.348,
-0.6431 -0.643
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -170,8 +170,8 @@ description: Variables in memory after executing angled_line.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-1.3482, -1.348,
-0.6431 -0.643
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -239,8 +239,8 @@ description: Variables in memory after executing artifact_graph_example_code_no_
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
15.5403, 15.54,
-1.1745 -1.175
], ],
"from": [ "from": [
15.49, 15.49,
@ -263,8 +263,8 @@ description: Variables in memory after executing artifact_graph_example_code_no_
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-7.6164, -7.616,
0.5757 0.576
], ],
"from": [ "from": [
0.0, 0.0,

View File

@ -110,7 +110,7 @@ description: Artifact commands circle_three_point.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 30.0059, "x": 30.006,
"y": 19.75, "y": 19.75,
"z": 0.0 "z": 0.0
} }

View File

@ -28,7 +28,7 @@ description: Variables in memory after executing circle_three_point.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
30.0059, 30.006,
19.75 19.75
], ],
"p1": [ "p1": [
@ -45,7 +45,7 @@ description: Variables in memory after executing circle_three_point.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
30.0059, 30.006,
19.75 19.75
], ],
"type": "CircleThreePoint", "type": "CircleThreePoint",
@ -86,11 +86,11 @@ description: Variables in memory after executing circle_three_point.kcl
}, },
"start": { "start": {
"from": [ "from": [
30.0059, 30.006,
19.75 19.75
], ],
"to": [ "to": [
30.0059, 30.006,
19.75 19.75
], ],
"units": { "units": {

View File

@ -77,8 +77,8 @@ description: Artifact commands execute_engine_error_return.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 5.5229, "x": 5.523,
"y": 5.2522, "y": 5.252,
"z": 0.0 "z": 0.0
} }
} }
@ -106,8 +106,8 @@ description: Artifact commands execute_engine_error_return.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 10.5043, "x": 10.504,
"y": -1.1912, "y": -1.191,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -123,8 +123,8 @@ description: Artifact commands execute_engine_error_return.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 8.0136, "x": 8.014,
"y": -5.4873, "y": -5.487,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -140,8 +140,8 @@ description: Artifact commands execute_engine_error_return.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.0288, "x": -1.029,
"y": -6.7683, "y": -6.768,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -157,8 +157,8 @@ description: Artifact commands execute_engine_error_return.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.5331, "x": -11.533,
"y": 2.8156, "y": 2.816,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true

View File

@ -110,7 +110,7 @@ description: Artifact commands flush_batch_on_end.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 6.9453, "x": 6.945,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -186,7 +186,7 @@ description: Artifact commands flush_batch_on_end.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 4.6228, "x": 4.623,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -140,7 +140,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
}, },
"outerDiameter": { "outerDiameter": {
"type": "Number", "type": "Number",
"value": 0.5469, "value": 0.547,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -168,7 +168,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
0.0 0.0
], ],
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"radius": 0.2734375, "radius": 0.2734375,
@ -180,7 +180,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -221,11 +221,11 @@ description: Variables in memory after executing flush_batch_on_end.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"units": { "units": {
@ -286,7 +286,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
0.0 0.0
], ],
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"radius": 0.2734375, "radius": 0.2734375,
@ -298,7 +298,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -339,11 +339,11 @@ description: Variables in memory after executing flush_batch_on_end.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"units": { "units": {
@ -393,7 +393,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
0.0 0.0
], ],
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"radius": 0.2734375, "radius": 0.2734375,
@ -405,7 +405,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -446,11 +446,11 @@ description: Variables in memory after executing flush_batch_on_end.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.2734, 0.273,
0.0 0.0
], ],
"to": [ "to": [
0.2734, 0.273,
0.0 0.0
], ],
"units": { "units": {

View File

@ -5571139,7 +5571139,7 @@ description: Artifact commands import_async.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.3541, "x": 3.354,
"y": 1.0, "y": 1.0,
"z": 0.0 "z": 0.0
} }
@ -5571225,7 +5571225,7 @@ description: Artifact commands import_async.kcl
"radius": 3.5, "radius": 3.5,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 343.3985 "value": 343.398
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
@ -5571254,7 +5571254,7 @@ description: Artifact commands import_async.kcl
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
"value": 16.6015 "value": 16.602
}, },
"relative": false "relative": false
} }
@ -5571441,7 +5571441,7 @@ description: Artifact commands import_async.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 19.7335, "y": 19.734,
"z": 0.0 "z": 0.0
} }
} }
@ -5571453,8 +5571453,8 @@ description: Artifact commands import_async.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 2.1027, "x": 2.103,
"y": 19.6212, "y": 19.621,
"z": 0.0 "z": 0.0
} }
} }
@ -5571466,8 +5571466,8 @@ description: Artifact commands import_async.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 4.2053, "x": 4.205,
"y": 19.2802, "y": 19.28,
"z": 0.0 "z": 0.0
} }
} }
@ -5571571,7 +5571571,7 @@ description: Artifact commands import_async.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 83.8833 "value": 83.883
}, },
"reverse": false "reverse": false
} }
@ -5571589,7 +5571589,7 @@ description: Artifact commands import_async.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 77.6955 "value": 77.696
}, },
"reverse": false "reverse": false
} }
@ -5571604,8 +5571604,8 @@ description: Artifact commands import_async.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.0495, "x": -3.049,
"y": 22.7969, "y": 22.797,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5571622,7 +5571622,7 @@ description: Artifact commands import_async.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -0.603, "x": -0.603,
"y": 22.9921, "y": 22.992,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5571638,8 +5571638,8 @@ description: Artifact commands import_async.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.8788, "x": 1.879,
"y": 22.9231, "y": 22.923,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5571658,7 +5571658,7 @@ description: Artifact commands import_async.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 616.4232 "value": 616.423
}, },
"reverse": true "reverse": true
} }
@ -5571676,7 +5571676,7 @@ description: Artifact commands import_async.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -97.4601 "value": -97.46
}, },
"reverse": true "reverse": true
} }
@ -5571694,7 +5571694,7 @@ description: Artifact commands import_async.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -91.2723 "value": -91.272
}, },
"reverse": true "reverse": true
} }
@ -5571709,8 +5571709,8 @@ description: Artifact commands import_async.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.8166, "x": -5.817,
"y": 18.8568, "y": 18.857,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5571726,8 +5571726,8 @@ description: Artifact commands import_async.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.7742, "x": -3.774,
"y": 19.3693, "y": 19.369,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5571743,8 +5571743,8 @@ description: Artifact commands import_async.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.6644, "x": -1.664,
"y": 19.6632, "y": 19.663,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -165,7 +165,7 @@ description: Operations executed import_async.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -177,7 +177,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -217,7 +217,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -257,7 +257,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -285,7 +285,7 @@ description: Operations executed import_async.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7038, "value": 1.704,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -417,7 +417,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -445,7 +445,7 @@ description: Operations executed import_async.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7632, "value": 1.763,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -457,7 +457,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -485,7 +485,7 @@ description: Operations executed import_async.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6552, "value": 1.655,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -497,7 +497,7 @@ description: Operations executed import_async.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -77,7 +77,7 @@ description: Artifact commands involute_circular_units.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 49.3339, "x": 49.334,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -124,8 +124,8 @@ description: Artifact commands involute_circular_units.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 57.3991, "x": 57.399,
"y": 3.4043, "y": 3.404,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -141,13 +141,13 @@ description: Artifact commands involute_circular_units.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.0004, "x": 0.0,
"y": -0.006 "y": -0.006
}, },
"radius": 57.5, "radius": 57.5,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 3.4002 "value": 3.4
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
@ -184,8 +184,8 @@ description: Artifact commands involute_circular_units.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 48.1956, "x": 48.196,
"y": 10.6421, "y": 10.642,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -201,8 +201,8 @@ description: Artifact commands involute_circular_units.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 47.1421, "x": 47.142,
"y": 14.5414, "y": 14.541,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -27,7 +27,7 @@ description: Operations executed involute_circular_units.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.2992, "value": 0.299,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -39,7 +39,7 @@ description: Operations executed involute_circular_units.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 4.9334, "value": 4.933,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -1,6 +1,5 @@
--- ---
source: kcl-lib/src/simulation_tests.rs source: kcl-lib/src/simulation_tests.rs
assertion_line: 187
description: Variables in memory after executing involute_circular_units.kcl description: Variables in memory after executing involute_circular_units.kcl
--- ---
{ {
@ -32,7 +31,7 @@ description: Variables in memory after executing involute_circular_units.kcl
}, },
"baseDiameter": { "baseDiameter": {
"type": "Number", "type": "Number",
"value": 9.8668, "value": 9.867,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -199,7 +198,7 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.9334, 4.933,
0.0 0.0
], ],
"tag": { "tag": {
@ -210,8 +209,8 @@ description: Variables in memory after executing involute_circular_units.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
5.7399, 5.74,
0.3404 0.34
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -224,13 +223,13 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
5.7399, 5.74,
0.3404 0.34
], ],
"tag": null, "tag": null,
"to": [ "to": [
5.7399, 5.74,
0.3404 0.34
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -245,11 +244,11 @@ description: Variables in memory after executing involute_circular_units.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
0.0, 0.0,
-0.0006 -0.001
], ],
"from": [ "from": [
5.7399, 5.74,
0.3404 0.34
], ],
"radius": 5.75, "radius": 5.75,
"tag": { "tag": {
@ -260,8 +259,8 @@ description: Variables in memory after executing involute_circular_units.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
5.6792, 5.679,
0.8989 0.899
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -274,13 +273,13 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
5.6792, 5.679,
0.8989 0.899
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.8196, 4.82,
1.0642 1.064
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -293,13 +292,13 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.8196, 4.82,
1.0642 1.064
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.8196, 4.82,
1.0642 1.064
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -312,13 +311,13 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.8196, 4.82,
1.0642 1.064
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.7142, 4.714,
1.4541 1.454
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -331,12 +330,12 @@ description: Variables in memory after executing involute_circular_units.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.7142, 4.714,
1.4541 1.454
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.9334, 4.933,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -377,11 +376,11 @@ description: Variables in memory after executing involute_circular_units.kcl
}, },
"start": { "start": {
"from": [ "from": [
4.9334, 4.933,
0.0 0.0
], ],
"to": [ "to": [
4.9334, 4.933,
0.0 0.0
], ],
"units": { "units": {

View File

@ -751,8 +751,8 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -44.1242, "x": -44.124,
"y": 37.0246, "y": 37.025,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -785,7 +785,7 @@ description: Artifact commands axial-fan.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -24.683, "x": -24.683,
"y": -29.4161, "y": -29.416,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -818,7 +818,7 @@ description: Artifact commands axial-fan.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 7.354, "x": 7.354,
"y": -6.1708, "y": -6.171,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -867,8 +867,8 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 25.4555, "x": 25.456,
"y": 11.2232, "y": 11.223,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -2969,7 +2969,7 @@ description: Artifact commands axial-fan.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -0.0001, "x": -0.0,
"y": 25.0, "y": 25.0,
"z": 0.0 "z": 0.0
} }
@ -3149,7 +3149,7 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.0001, "x": -1.0,
"y": 23.6, "y": 23.6,
"z": 0.0 "z": 0.0
}, },
@ -3166,7 +3166,7 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0001, "x": -0.0,
"y": 23.6, "y": 23.6,
"z": 0.0 "z": 0.0
}, },
@ -3183,7 +3183,7 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0001, "x": -0.0,
"y": 25.0, "y": 25.0,
"z": 0.0 "z": 0.0
}, },
@ -3439,8 +3439,8 @@ description: Artifact commands axial-fan.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 9.6418, "x": 9.642,
"y": 11.4907, "y": 11.491,
"z": 0.0 "z": 0.0
} }
} }
@ -3452,7 +3452,7 @@ description: Artifact commands axial-fan.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 12.9904, "x": 12.99,
"y": 7.5, "y": 7.5,
"z": 0.0 "z": 0.0
} }
@ -3624,12 +3624,12 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 15.8879, "x": 15.888,
"y": 21.084, "y": 21.084,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 45.7261, "x": 45.726,
"y": 26.4, "y": 26.4,
"z": 0.0 "z": 0.0
}, },
@ -3646,13 +3646,13 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 22.1409, "x": 22.141,
"y": 14.3785, "y": 14.378,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 51.9978, "x": 51.998,
"y": 9.1686, "y": 9.169,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3668,13 +3668,13 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 26.3638, "x": 26.364,
"y": 1.3817, "y": 1.382,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 49.6158, "x": 49.616,
"y": -18.0587, "y": -18.059,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3690,12 +3690,12 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 46.6196, "x": 46.62,
"y": 24.7881, "y": 24.788,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 47.4563, "x": 47.456,
"y": 23.146, "y": 23.146,
"z": 0.0 "z": 0.0
}, },
@ -3712,13 +3712,13 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 52.2862, "x": 52.286,
"y": 7.3483, "y": 7.348,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 52.5108, "x": 52.511,
"y": 5.5191, "y": 5.519,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3734,13 +3734,13 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 48.9553, "x": 48.955,
"y": -19.7792, "y": -19.779,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 48.2352, "x": 48.235,
"y": -21.4757, "y": -21.476,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3756,13 +3756,13 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 18.6676, "x": 18.668,
"y": 18.6676, "y": 18.668,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 9.6418, "x": 9.642,
"y": 11.4907, "y": 11.491,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3778,12 +3778,12 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 23.9265, "x": 23.927,
"y": 11.1571, "y": 11.157,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 12.9904, "x": 12.99,
"y": 7.5, "y": 7.5,
"z": 0.0 "z": 0.0
}, },
@ -3800,8 +3800,8 @@ description: Artifact commands axial-fan.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 26.2995, "x": 26.3,
"y": -2.3009, "y": -2.301,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {

View File

@ -37,7 +37,7 @@ description: Artifact commands ball-bearing.kcl
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": -3.9751 "z": -3.975
}, },
"x_axis": { "x_axis": {
"x": 1.0, "x": 1.0,
@ -365,7 +365,7 @@ description: Artifact commands ball-bearing.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 12.065, "x": 12.065,
"y": 0.0254, "y": 0.025,
"z": 0.0 "z": 0.0
} }
} }
@ -394,7 +394,7 @@ description: Artifact commands ball-bearing.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 15.24, "x": 15.24,
"y": 0.0254 "y": 0.025
}, },
"radius": 3.175, "radius": 3.175,
"start": { "start": {
@ -537,8 +537,8 @@ description: Artifact commands ball-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 13.6525, "x": 13.652,
"y": 2.7496, "y": 2.75,
"z": 0.0 "z": 0.0
} }
} }
@ -592,7 +592,7 @@ description: Artifact commands ball-bearing.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 0.7938, "y": 0.794,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -777,7 +777,7 @@ description: Artifact commands ball-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 16.0337, "x": 16.034,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -877,7 +877,7 @@ description: Artifact commands ball-bearing.kcl
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": -3.9751 "z": -3.975
}, },
"x_axis": { "x_axis": {
"x": 1.0, "x": 1.0,
@ -964,7 +964,7 @@ description: Artifact commands ball-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 20.6375, "x": 20.638,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -30,7 +30,7 @@ description: Operations executed ball-bearing.kcl
"offset": { "offset": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1565, "value": -0.157,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -905,7 +905,7 @@ description: Operations executed ball-bearing.kcl
"offset": { "offset": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1565, "value": -0.157,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -3255,7 +3255,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.3072, "x": -11.307,
"y": 9.2, "y": 9.2,
"z": 0.0 "z": 0.0
}, },
@ -3272,7 +3272,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -12.6928, "x": -12.693,
"y": 9.2, "y": 9.2,
"z": 0.0 "z": 0.0
}, },
@ -3289,7 +3289,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -13.3856, "x": -13.386,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
}, },
@ -3306,7 +3306,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -12.6928, "x": -12.693,
"y": 6.8, "y": 6.8,
"z": 0.0 "z": 0.0
}, },
@ -3323,7 +3323,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.3072, "x": -11.307,
"y": 6.8, "y": 6.8,
"z": 0.0 "z": 0.0
}, },
@ -3340,7 +3340,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -10.6144, "x": -10.614,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
}, },
@ -3357,7 +3357,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 16.6928, "x": 16.693,
"y": 9.2, "y": 9.2,
"z": 0.0 "z": 0.0
}, },
@ -3374,7 +3374,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 15.3072, "x": 15.307,
"y": 9.2, "y": 9.2,
"z": 0.0 "z": 0.0
}, },
@ -3391,7 +3391,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 14.6144, "x": 14.614,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
}, },
@ -3408,7 +3408,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 15.3072, "x": 15.307,
"y": 6.8, "y": 6.8,
"z": 0.0 "z": 0.0
}, },
@ -3425,7 +3425,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 16.6928, "x": 16.693,
"y": 6.8, "y": 6.8,
"z": 0.0 "z": 0.0
}, },
@ -3442,7 +3442,7 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 17.3856, "x": 17.386,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
}, },
@ -3457,7 +3457,7 @@ description: Artifact commands bench.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -10.6144, "x": -10.614,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
} }
@ -3470,7 +3470,7 @@ description: Artifact commands bench.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 17.3856, "x": 17.386,
"y": 8.0, "y": 8.0,
"z": 0.0 "z": 0.0
} }
@ -3815,8 +3815,8 @@ description: Artifact commands bench.kcl
[ [
{ {
"translate": { "translate": {
"x": 10.9863, "x": 10.986,
"y": -0.5493, "y": -0.549,
"z": 0.0 "z": 0.0
}, },
"scale": { "scale": {
@ -3844,8 +3844,8 @@ description: Artifact commands bench.kcl
[ [
{ {
"translate": { "translate": {
"x": 21.9726, "x": 21.973,
"y": -1.0986, "y": -1.099,
"z": 0.0 "z": 0.0
}, },
"scale": { "scale": {
@ -4114,8 +4114,8 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.9851, "x": -1.985,
"y": 0.2437, "y": 0.244,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -4148,8 +4148,8 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.9185, "x": 0.919,
"y": 6.5358, "y": 6.536,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -4182,8 +4182,8 @@ description: Artifact commands bench.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.9851, "x": 1.985,
"y": -0.2437, "y": -0.244,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -4226,8 +4226,8 @@ description: Artifact commands bench.kcl
[ [
{ {
"translate": { "translate": {
"x": -1.4931, "x": -1.493,
"y": -10.8982, "y": -10.898,
"z": 0.0 "z": 0.0
}, },
"scale": { "scale": {

View File

@ -131,8 +131,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 20.6923, "x": 20.692,
"y": 12.7009 "y": 12.701
}, },
"radius": 5.0, "radius": 5.0,
"start": { "start": {
@ -156,7 +156,7 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 143.6312, "x": 143.631,
"y": 16.746 "y": 16.746
}, },
"radius": 120.0, "radius": 120.0,
@ -181,8 +181,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 21.4236, "x": 21.424,
"y": 29.4469 "y": 29.447
}, },
"radius": 5.0, "radius": 5.0,
"start": { "start": {
@ -206,7 +206,7 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 144.3625, "x": 144.362,
"y": 33.492 "y": 33.492
}, },
"radius": 120.0, "radius": 120.0,
@ -231,8 +231,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 22.1548, "x": 22.155,
"y": 46.1929 "y": 46.193
}, },
"radius": 5.0, "radius": 5.0,
"start": { "start": {
@ -256,7 +256,7 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 195.0937, "x": 195.094,
"y": 50.238 "y": 50.238
}, },
"radius": 170.0, "radius": 170.0,
@ -282,7 +282,7 @@ description: Artifact commands bone-plate.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 15.775, "x": 15.775,
"y": 23.8722, "y": 23.872,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -315,8 +315,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.4095, "x": 0.41,
"y": 23.1564, "y": 23.156,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -332,8 +332,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 3.6005, "x": 3.6,
"y": 0.2036, "y": 0.204,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -349,8 +349,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 3.3422, "x": 3.342,
"y": -25.4313, "y": -25.431,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -366,8 +366,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -15.9222, "x": -15.922,
"y": -29.4787, "y": -29.479,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -400,8 +400,8 @@ description: Artifact commands bone-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -7.3998, "x": -7.4,
"y": -48.4987, "y": -48.499,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true

File diff suppressed because it is too large Load Diff

View File

@ -107,7 +107,7 @@ description: Artifact commands bottle.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 26.6667, "y": 26.667,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -129,7 +129,7 @@ description: Artifact commands bottle.kcl
}, },
"end": { "end": {
"x": 62.5, "x": 62.5,
"y": 26.6667, "y": 26.667,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -26,7 +26,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
-62.5, -62.5,
26.6667 26.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -40,7 +40,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
-62.5, -62.5,
26.6667 26.667
], ],
"p1": [ "p1": [
-62.5, -62.5,
@ -57,7 +57,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
62.5, 62.5,
26.6667 26.667
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
"units": { "units": {
@ -71,7 +71,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
62.5, 62.5,
26.6667 26.667
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -279,7 +279,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
-62.5, -62.5,
26.6667 26.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -293,7 +293,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
-62.5, -62.5,
26.6667 26.667
], ],
"p1": [ "p1": [
-62.5, -62.5,
@ -310,7 +310,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
62.5, 62.5,
26.6667 26.667
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
"units": { "units": {
@ -324,7 +324,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
62.5, 62.5,
26.6667 26.667
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -542,7 +542,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
-62.5, -62.5,
26.6667 26.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -556,7 +556,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
-62.5, -62.5,
26.6667 26.667
], ],
"p1": [ "p1": [
-62.5, -62.5,
@ -573,7 +573,7 @@ description: Variables in memory after executing bottle.kcl
"tag": null, "tag": null,
"to": [ "to": [
62.5, 62.5,
26.6667 26.667
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
"units": { "units": {
@ -587,7 +587,7 @@ description: Variables in memory after executing bottle.kcl
}, },
"from": [ "from": [
62.5, 62.5,
26.6667 26.667
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -106,7 +106,7 @@ description: Artifact commands bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 117.2247, "x": 117.225,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -124,7 +124,7 @@ description: Artifact commands bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 9.7753, "y": 9.775,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -174,7 +174,7 @@ description: Artifact commands bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 9.7753, "x": 9.775,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -350,7 +350,7 @@ description: Artifact commands bracket.kcl
[ [
{ {
"translate": { "translate": {
"x": -72.7747, "x": -72.775,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -712,8 +712,8 @@ description: Artifact commands bracket.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 26.9875, "x": 26.987,
"y": 23.8125 "y": 23.813
}, },
"radius": 7.9375, "radius": 7.9375,
"start": { "start": {
@ -736,7 +736,7 @@ description: Artifact commands bracket.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 34.925, "x": 34.925,
"y": 23.8125, "y": 23.813,
"z": 0.0 "z": 0.0
} }
} }

View File

@ -111,7 +111,7 @@ description: Operations executed bracket.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.3949, "value": -0.395,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -178,7 +178,7 @@ description: Operations executed bracket.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.4849, "value": -0.485,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -210,7 +210,7 @@ description: Operations executed bracket.kcl
"radius": { "radius": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.6349, "value": 0.635,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -123,7 +123,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -137,7 +137,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -148,8 +148,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -162,8 +162,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -173,8 +173,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -187,8 +187,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -198,8 +198,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -212,8 +212,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -224,7 +224,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -238,7 +238,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -367,7 +367,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"extBendRadius": { "extBendRadius": {
"type": "Number", "type": "Number",
"value": 0.6349, "value": 0.635,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -686,7 +686,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -700,7 +700,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -711,8 +711,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -725,8 +725,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -736,8 +736,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -750,8 +750,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -761,8 +761,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -775,8 +775,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -787,7 +787,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -801,7 +801,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -1135,7 +1135,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1149,7 +1149,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -1160,8 +1160,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1174,8 +1174,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -1185,8 +1185,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1199,8 +1199,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -1210,8 +1210,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1224,8 +1224,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -1236,7 +1236,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1250,7 +1250,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -1584,7 +1584,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1598,7 +1598,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -1609,8 +1609,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1623,8 +1623,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -1634,8 +1634,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1648,8 +1648,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -1659,8 +1659,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1673,8 +1673,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -1685,7 +1685,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1699,7 +1699,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -2033,7 +2033,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2047,7 +2047,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -2058,8 +2058,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2072,8 +2072,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -2083,8 +2083,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2097,8 +2097,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -2108,8 +2108,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2122,8 +2122,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -2134,7 +2134,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2148,7 +2148,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -2328,7 +2328,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"thickness": { "thickness": {
"type": "Number", "type": "Number",
"value": 0.3849, "value": 0.385,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -2367,7 +2367,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"wallMountingHolePlacementOffset": { "wallMountingHolePlacementOffset": {
"type": "Number", "type": "Number",
"value": 0.9375, "value": 0.938,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -2407,18 +2407,18 @@ description: Variables in memory after executing bracket.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
1.0625, 1.063,
0.9375 0.938
], ],
"from": [ "from": [
1.375, 1.375,
0.9375 0.938
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
1.375, 1.375,
0.9375 0.938
], ],
"type": "Circle", "type": "Circle",
"units": { "units": {
@ -2552,7 +2552,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2566,7 +2566,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -2577,8 +2577,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2591,8 +2591,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -2602,8 +2602,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2616,8 +2616,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -2627,8 +2627,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2641,8 +2641,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -2653,7 +2653,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2667,7 +2667,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -2800,11 +2800,11 @@ description: Variables in memory after executing bracket.kcl
"start": { "start": {
"from": [ "from": [
1.375, 1.375,
0.9375 0.938
], ],
"to": [ "to": [
1.375, 1.375,
0.9375 0.938
], ],
"units": { "units": {
"type": "Inches" "type": "Inches"
@ -2856,18 +2856,18 @@ description: Variables in memory after executing bracket.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
1.0625, 1.063,
0.9375 0.938
], ],
"from": [ "from": [
1.375, 1.375,
0.9375 0.938
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
1.375, 1.375,
0.9375 0.938
], ],
"type": "Circle", "type": "Circle",
"units": { "units": {
@ -3001,7 +3001,7 @@ description: Variables in memory after executing bracket.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6151, 4.615,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -3015,7 +3015,7 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.0 0.0
], ],
"tag": { "tag": {
@ -3026,8 +3026,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg02" "value": "seg02"
}, },
"to": [ "to": [
4.6151, 4.615,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3040,8 +3040,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6151, 4.615,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2263, "commentStart": 2263,
@ -3051,8 +3051,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-0.3849, -0.385,
0.3849 0.385
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3065,8 +3065,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
0.3849 0.385
], ],
"tag": { "tag": {
"commentStart": 2315, "commentStart": 2315,
@ -3076,8 +3076,8 @@ description: Variables in memory after executing bracket.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3090,8 +3090,8 @@ description: Variables in memory after executing bracket.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.3849, -0.385,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2360, "commentStart": 2360,
@ -3102,7 +3102,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"to": [ "to": [
0.0, 0.0,
-1.8651 -1.865
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3116,7 +3116,7 @@ description: Variables in memory after executing bracket.kcl
}, },
"from": [ "from": [
0.0, 0.0,
-1.8651 -1.865
], ],
"tag": { "tag": {
"commentStart": 2436, "commentStart": 2436,
@ -3249,11 +3249,11 @@ description: Variables in memory after executing bracket.kcl
"start": { "start": {
"from": [ "from": [
1.375, 1.375,
0.9375 0.938
], ],
"to": [ "to": [
1.375, 1.375,
0.9375 0.938
], ],
"units": { "units": {
"type": "Inches" "type": "Inches"

View File

@ -182,8 +182,8 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 11.7072, "x": 11.707,
"y": 111.3865 "y": 111.386
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -207,8 +207,8 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 33.6465, "x": 33.646,
"y": 125.5704 "y": 125.57
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -233,7 +233,7 @@ description: Artifact commands brake-rotor.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 60.197, "x": 60.197,
"y": 135.2047 "y": 135.205
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -257,8 +257,8 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 11.7072, "x": 11.707,
"y": 111.3865 "y": 111.386
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -282,8 +282,8 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 33.6465, "x": 33.646,
"y": 125.5704 "y": 125.57
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -308,7 +308,7 @@ description: Artifact commands brake-rotor.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 60.197, "x": 60.197,
"y": 135.2047 "y": 135.205
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -330,8 +330,8 @@ description: Artifact commands brake-rotor.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 14.7072, "x": 14.707,
"y": 111.3865, "y": 111.386,
"z": 0.0 "z": 0.0
} }
} }
@ -343,8 +343,8 @@ description: Artifact commands brake-rotor.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 36.6465, "x": 36.646,
"y": 125.5704, "y": 125.57,
"z": 0.0 "z": 0.0
} }
} }
@ -357,7 +357,7 @@ description: Artifact commands brake-rotor.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 63.197, "x": 63.197,
"y": 135.2047, "y": 135.205,
"z": 0.0 "z": 0.0
} }
} }
@ -369,8 +369,8 @@ description: Artifact commands brake-rotor.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 14.7072, "x": 14.707,
"y": 111.3865, "y": 111.386,
"z": 0.0 "z": 0.0
} }
} }
@ -382,8 +382,8 @@ description: Artifact commands brake-rotor.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 36.6465, "x": 36.646,
"y": 125.5704, "y": 125.57,
"z": 0.0 "z": 0.0
} }
} }
@ -396,7 +396,7 @@ description: Artifact commands brake-rotor.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 63.197, "x": 63.197,
"y": 135.2047, "y": 135.205,
"z": 0.0 "z": 0.0
} }
} }
@ -2898,7 +2898,7 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 3.4995, "x": 3.5,
"y": 40.0, "y": 40.0,
"z": 0.0 "z": 0.0
}, },
@ -2915,7 +2915,7 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 56.5005, "x": 56.5,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2949,7 +2949,7 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -51.9379, "x": -51.938,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2966,7 +2966,7 @@ description: Artifact commands brake-rotor.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.0621, "x": -3.062,
"y": -40.0, "y": -40.0,
"z": 0.0 "z": 0.0
}, },

View File

@ -159,7 +159,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -173,7 +173,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -222,7 +222,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -236,7 +236,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -719,7 +719,7 @@ description: Variables in memory after executing brake-rotor.kcl
}, },
"lDraftExterior": { "lDraftExterior": {
"type": "Number", "type": "Number",
"value": 3.4995, "value": 3.5,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -732,7 +732,7 @@ description: Variables in memory after executing brake-rotor.kcl
}, },
"lDraftInterior": { "lDraftInterior": {
"type": "Number", "type": "Number",
"value": 3.0621, "value": 3.062,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -927,7 +927,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -941,7 +941,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -990,7 +990,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1004,7 +1004,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -1361,7 +1361,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1375,7 +1375,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -1424,7 +1424,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1438,7 +1438,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -1795,7 +1795,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1809,7 +1809,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -1858,7 +1858,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1872,7 +1872,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -2229,7 +2229,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2243,7 +2243,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -2292,7 +2292,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2306,7 +2306,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -2663,7 +2663,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2677,7 +2677,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -2726,7 +2726,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2740,7 +2740,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -3192,7 +3192,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -3206,7 +3206,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -3255,7 +3255,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -3269,7 +3269,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -3605,7 +3605,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -3619,7 +3619,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -3668,7 +3668,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -3682,7 +3682,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -4018,7 +4018,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4032,7 +4032,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -4081,7 +4081,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4095,7 +4095,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -4431,7 +4431,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4445,7 +4445,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -4494,7 +4494,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4508,7 +4508,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -4844,7 +4844,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4858,7 +4858,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -4907,7 +4907,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4921,7 +4921,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,
@ -5318,7 +5318,7 @@ description: Variables in memory after executing brake-rotor.kcl
}, },
"rInner": { "rInner": {
"type": "Number", "type": "Number",
"value": 51.9379, "value": 51.938,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -5331,7 +5331,7 @@ description: Variables in memory after executing brake-rotor.kcl
}, },
"rOuter": { "rOuter": {
"type": "Number", "type": "Number",
"value": 56.5005, "value": 56.5,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -5549,7 +5549,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-88.5005, -88.5,
70.0 70.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -5563,7 +5563,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-88.5005, -88.5,
70.0 70.0
], ],
"tag": { "tag": {
@ -5612,7 +5612,7 @@ description: Variables in memory after executing brake-rotor.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-83.9379, -83.938,
65.0 65.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -5626,7 +5626,7 @@ description: Variables in memory after executing brake-rotor.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-83.9379, -83.938,
65.0 65.0
], ],
"tag": null, "tag": null,

View File

@ -1953,7 +1953,7 @@ description: Artifact commands car-wheel-assembly.kcl
"z": 2.54 "z": 2.54
}, },
"x_axis": { "x_axis": {
"x": 0.9998, "x": 1.0,
"y": 0.0, "y": 0.0,
"z": 0.02 "z": 0.02
}, },
@ -1978,7 +1978,7 @@ description: Artifact commands car-wheel-assembly.kcl
"z": -2.54 "z": -2.54
}, },
"x_axis": { "x_axis": {
"x": 0.9998, "x": 1.0,
"y": 0.0, "y": 0.0,
"z": -0.02 "z": -0.02
}, },
@ -2004,7 +2004,7 @@ description: Artifact commands car-wheel-assembly.kcl
"planar_normal": { "planar_normal": {
"x": -0.02, "x": -0.02,
"y": 0.0, "y": 0.0,
"z": 0.9998 "z": 1.0
} }
} }
}, },
@ -2020,7 +2020,7 @@ description: Artifact commands car-wheel-assembly.kcl
"planar_normal": { "planar_normal": {
"x": 0.02, "x": 0.02,
"y": -0.0, "y": -0.0,
"z": 0.9998 "z": 1.0
} }
} }
}, },
@ -2105,13 +2105,13 @@ description: Artifact commands car-wheel-assembly.kcl
"segment": { "segment": {
"type": "bezier", "type": "bezier",
"control1": { "control1": {
"x": 84.1829, "x": 84.183,
"y": -5.0, "y": -5.0,
"z": 0.0 "z": 0.0
}, },
"control2": { "control2": {
"x": 73.66, "x": 73.66,
"y": -23.3333, "y": -23.333,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
@ -2132,13 +2132,13 @@ description: Artifact commands car-wheel-assembly.kcl
"segment": { "segment": {
"type": "bezier", "type": "bezier",
"control1": { "control1": {
"x": 84.1829, "x": 84.183,
"y": -5.0, "y": -5.0,
"z": 0.0 "z": 0.0
}, },
"control2": { "control2": {
"x": 73.66, "x": 73.66,
"y": -23.3333, "y": -23.333,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
@ -2160,7 +2160,7 @@ description: Artifact commands car-wheel-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -16.0867, "y": -16.087,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2177,7 +2177,7 @@ description: Artifact commands car-wheel-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -16.0867, "y": -16.087,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2199,7 +2199,7 @@ description: Artifact commands car-wheel-assembly.kcl
}, },
"control2": { "control2": {
"x": -58.928, "x": -58.928,
"y": 23.3333, "y": 23.333,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
@ -2226,7 +2226,7 @@ description: Artifact commands car-wheel-assembly.kcl
}, },
"control2": { "control2": {
"x": -58.928, "x": -58.928,
"y": 23.3333, "y": 23.333,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
@ -2300,7 +2300,7 @@ description: Artifact commands car-wheel-assembly.kcl
"planar_normal": { "planar_normal": {
"x": -0.02, "x": -0.02,
"y": 0.0, "y": 0.0,
"z": 0.9998 "z": 1.0
} }
} }
}, },
@ -2316,7 +2316,7 @@ description: Artifact commands car-wheel-assembly.kcl
"planar_normal": { "planar_normal": {
"x": 0.02, "x": 0.02,
"y": -0.0, "y": -0.0,
"z": 0.9998 "z": 1.0
} }
} }
}, },
@ -2902,7 +2902,7 @@ description: Artifact commands car-wheel-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -113.4364, "y": -113.436,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -6982,7 +6982,7 @@ description: Artifact commands car-wheel-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 4.3676, "x": 4.368,
"y": 12.0, "y": 12.0,
"z": 0.0 "z": 0.0
}, },
@ -7049,7 +7049,7 @@ description: Artifact commands car-wheel-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0254, "x": 0.025,
"y": 33.0, "y": 33.0,
"z": 0.0 "z": 0.0
}, },
@ -7066,7 +7066,7 @@ description: Artifact commands car-wheel-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0254, "x": 0.025,
"y": 17.3, "y": 17.3,
"z": 0.0 "z": 0.0
}, },

View File

@ -106,7 +106,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 17.4625, "x": 17.463,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -240,7 +240,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 17.4625, "x": 17.463,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -257,7 +257,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.1904, "x": 1.19,
"y": -5.156, "y": -5.156,
"z": 0.0 "z": 0.0
}, },
@ -307,7 +307,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 143.6585, "x": 143.658,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -730,7 +730,7 @@ description: Artifact commands cold-plate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -68.2625, "x": -68.263,
"y": 15.875, "y": 15.875,
"z": 0.0 "z": 0.0
} }
@ -833,7 +833,7 @@ description: Artifact commands cold-plate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -70.2945, "x": -70.295,
"y": 15.875, "y": 15.875,
"z": 0.0 "z": 0.0
} }
@ -974,7 +974,7 @@ description: Artifact commands cold-plate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 68.2625, "x": 68.263,
"y": 31.75, "y": 31.75,
"z": 0.0 "z": 0.0
} }
@ -1004,11 +1004,11 @@ description: Artifact commands cold-plate.kcl
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 76.2, "x": 76.2,
"y": 29.3688, "y": 29.369,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 84.1375, "x": 84.137,
"y": 31.75, "y": 31.75,
"z": 0.0 "z": 0.0
}, },
@ -1025,7 +1025,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 84.1375, "x": 84.137,
"y": 15.875, "y": 15.875,
"z": 0.0 "z": 0.0
}, },
@ -1043,11 +1043,11 @@ description: Artifact commands cold-plate.kcl
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 76.2, "x": 76.2,
"y": 23.8125, "y": 23.813,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 68.2625, "x": 68.263,
"y": 15.875, "y": 15.875,
"z": 0.0 "z": 0.0
}, },
@ -1064,7 +1064,7 @@ description: Artifact commands cold-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 68.2625, "x": 68.263,
"y": 31.75, "y": 31.75,
"z": 0.0 "z": 0.0
}, },

View File

@ -65,7 +65,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"p1": [ "p1": [
@ -82,7 +82,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
1.25 1.25
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -96,12 +96,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -115,7 +115,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
0.625 0.625
], ],
"p1": [ "p1": [
@ -132,7 +132,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
0.625 0.625
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -146,12 +146,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -165,12 +165,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -211,11 +211,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"units": { "units": {
@ -288,7 +288,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"p1": [ "p1": [
@ -305,7 +305,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
1.25 1.25
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -319,12 +319,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -338,7 +338,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
0.625 0.625
], ],
"p1": [ "p1": [
@ -355,7 +355,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
0.625 0.625
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -369,12 +369,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -388,12 +388,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -434,11 +434,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"units": { "units": {
@ -511,7 +511,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"p1": [ "p1": [
@ -528,7 +528,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
1.25 1.25
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -542,12 +542,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -561,7 +561,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
0.625 0.625
], ],
"p1": [ "p1": [
@ -578,7 +578,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
0.625 0.625
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -592,12 +592,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -611,12 +611,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -657,11 +657,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"units": { "units": {
@ -734,7 +734,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"p1": [ "p1": [
@ -751,7 +751,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
1.25 1.25
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -765,12 +765,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -784,7 +784,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
0.625 0.625
], ],
"p1": [ "p1": [
@ -801,7 +801,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
0.625 0.625
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
@ -815,12 +815,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -834,12 +834,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -880,11 +880,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"units": { "units": {
@ -935,7 +935,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6875, 0.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -949,12 +949,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.6875, 0.688,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6875, 0.688,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -973,12 +973,12 @@ description: Variables in memory after executing cold-plate.kcl
0.625 0.625
], ],
"from": [ "from": [
0.6875, 0.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3125, 1.313,
0.625 0.625
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -992,12 +992,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.3125, 1.313,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3125, 1.313,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1011,7 +1011,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.3125, 1.313,
1.25 1.25
], ],
"tag": { "tag": {
@ -1022,7 +1022,7 @@ description: Variables in memory after executing cold-plate.kcl
"value": "seg07" "value": "seg07"
}, },
"to": [ "to": [
2.6875, 2.688,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1036,7 +1036,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.6875, 2.688,
1.25 1.25
], ],
"tag": { "tag": {
@ -1047,7 +1047,7 @@ description: Variables in memory after executing cold-plate.kcl
"value": "seg09" "value": "seg09"
}, },
"to": [ "to": [
2.6875, 2.688,
0.625 0.625
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1066,12 +1066,12 @@ description: Variables in memory after executing cold-plate.kcl
0.625 0.625
], ],
"from": [ "from": [
2.6875, 2.688,
0.625 0.625
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.3125, 3.313,
0.625 0.625
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -1085,7 +1085,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
0.625 0.625
], ],
"tag": { "tag": {
@ -1096,7 +1096,7 @@ description: Variables in memory after executing cold-plate.kcl
"value": "seg08" "value": "seg08"
}, },
"to": [ "to": [
3.3125, 3.313,
1.25 1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1110,7 +1110,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
3.3125, 3.313,
1.25 1.25
], ],
"tag": null, "tag": null,
@ -1134,7 +1134,7 @@ description: Variables in memory after executing cold-plate.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.0469, 4.047,
1.047 1.047
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1149,11 +1149,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
4.6558, 4.656,
1.1876 1.188
], ],
"from": [ "from": [
4.0469, 4.047,
1.047 1.047
], ],
"tag": { "tag": {
@ -1164,8 +1164,8 @@ description: Variables in memory after executing cold-plate.kcl
"value": "seg01" "value": "seg01"
}, },
"to": [ "to": [
4.6558, 4.656,
0.5626 0.563
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1178,13 +1178,13 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.6558, 4.656,
0.5626 0.563
], ],
"tag": null, "tag": null,
"to": [ "to": [
5.6558, 5.656,
0.5626 0.563
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1197,12 +1197,12 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
5.6558, 5.656,
0.5626 0.563
], ],
"tag": null, "tag": null,
"to": [ "to": [
5.6558, 5.656,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1216,7 +1216,7 @@ description: Variables in memory after executing cold-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
5.6558, 5.656,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -1680,13 +1680,13 @@ description: Variables in memory after executing cold-plate.kcl
0.625 0.625
], ],
"from": [ "from": [
-2.6875, -2.688,
0.625 0.625
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
-2.6875, -2.688,
0.625 0.625
], ],
"type": "Circle", "type": "Circle",
@ -1727,11 +1727,11 @@ description: Variables in memory after executing cold-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
-2.6875, -2.688,
0.625 0.625
], ],
"to": [ "to": [
-2.6875, -2.688,
0.625 0.625
], ],
"units": { "units": {

View File

@ -622,7 +622,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -57.9438, "x": -57.944,
"y": -38.1, "y": -38.1,
"z": 0.0 "z": 0.0
} }
@ -635,7 +635,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -57.9438, "x": -57.944,
"y": 38.1, "y": 38.1,
"z": 0.0 "z": 0.0
} }
@ -648,7 +648,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 69.0562, "x": 69.056,
"y": -38.1, "y": -38.1,
"z": 0.0 "z": 0.0
} }
@ -661,7 +661,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 69.0562, "x": 69.056,
"y": 38.1, "y": 38.1,
"z": 0.0 "z": 0.0
} }
@ -2000,8 +2000,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.8575, "x": 0.857,
"y": 0.5145, "y": 0.514,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -2025,8 +2025,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": -0.8575, "x": -0.857,
"y": 0.5145, "y": 0.514,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -2049,8 +2049,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.5145, "x": 0.514,
"y": -0.8575, "y": -0.857,
"z": 0.0 "z": 0.0
} }
} }
@ -2065,8 +2065,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.5145, "x": 0.514,
"y": 0.8575, "y": 0.857,
"z": -0.0 "z": -0.0
} }
} }
@ -2152,7 +2152,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 62.9406, "x": 62.941,
"y": 12.7, "y": 12.7,
"z": 0.0 "z": 0.0
}, },
@ -2169,7 +2169,7 @@ description: Artifact commands counterdrilled-weldment.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 62.9406, "x": 62.941,
"y": 12.7, "y": 12.7,
"z": 0.0 "z": 0.0
}, },
@ -2339,8 +2339,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.5145, "x": 0.514,
"y": -0.8575, "y": -0.857,
"z": 0.0 "z": 0.0
} }
} }
@ -2355,8 +2355,8 @@ description: Artifact commands counterdrilled-weldment.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.5145, "x": 0.514,
"y": 0.8575, "y": 0.857,
"z": -0.0 "z": -0.0
} }
} }

View File

@ -237,7 +237,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1875, "value": -0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -269,7 +269,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1875, "value": -0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -301,7 +301,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1875, "value": -0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -333,7 +333,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.1875, "value": -0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -457,7 +457,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.3125, "value": -0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -489,7 +489,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.3125, "value": -0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -521,7 +521,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.3125, "value": -0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -553,7 +553,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.3125, "value": -0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -585,7 +585,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.1326, "value": 0.133,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -630,7 +630,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.1326, "value": 0.133,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -675,7 +675,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.1326, "value": 0.133,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -720,7 +720,7 @@ description: Operations executed counterdrilled-weldment.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.1326, "value": 0.133,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -182,7 +182,7 @@ description: Variables in memory after executing counterdrilled-weldment.kcl
}, },
"counterdrillDepth": { "counterdrillDepth": {
"type": "Number", "type": "Number",
"value": 0.1875, "value": 0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -195,7 +195,7 @@ description: Variables in memory after executing counterdrilled-weldment.kcl
}, },
"counterdrillDiameter": { "counterdrillDiameter": {
"type": "Number", "type": "Number",
"value": 0.4375, "value": 0.438,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -78,7 +78,7 @@ description: Artifact commands countersunk-plate.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 15.413, "x": 15.413,
"y": 39.3141, "y": 39.314,
"z": 0.0 "z": 0.0
} }
} }
@ -106,8 +106,8 @@ description: Artifact commands countersunk-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 55.0402, "x": 55.04,
"y": -21.5784, "y": -21.578,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -125,7 +125,7 @@ description: Artifact commands countersunk-plate.kcl
"radius": 19.049999999999997, "radius": 19.049999999999997,
"offset": { "offset": {
"unit": "degrees", "unit": "degrees",
"value": -137.1848 "value": -137.185
} }
} }
} }
@ -139,8 +139,8 @@ description: Artifact commands countersunk-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -55.0402, "x": -55.04,
"y": -21.5784, "y": -21.578,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -158,7 +158,7 @@ description: Artifact commands countersunk-plate.kcl
"radius": 42.2275, "radius": 42.2275,
"offset": { "offset": {
"unit": "degrees", "unit": "degrees",
"value": -42.8152 "value": -42.815
} }
} }
} }
@ -172,8 +172,8 @@ description: Artifact commands countersunk-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -55.0402, "x": -55.04,
"y": 21.5784, "y": 21.578,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -191,7 +191,7 @@ description: Artifact commands countersunk-plate.kcl
"radius": 19.049999999999997, "radius": 19.049999999999997,
"offset": { "offset": {
"unit": "degrees", "unit": "degrees",
"value": -137.1848 "value": -137.185
} }
} }
} }
@ -205,8 +205,8 @@ description: Artifact commands countersunk-plate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 55.0402, "x": 55.04,
"y": 21.5784, "y": 21.578,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -222,7 +222,7 @@ description: Artifact commands countersunk-plate.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 30.8261, "x": 30.826,
"y": -0.0, "y": -0.0,
"z": 0.0 "z": 0.0
}, },
@ -312,7 +312,7 @@ description: Artifact commands countersunk-plate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 33.3375, "x": 33.338,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -27,7 +27,7 @@ description: Operations executed countersunk-plate.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.1972, "value": 1.197,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -39,7 +39,7 @@ description: Operations executed countersunk-plate.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6625, "value": 1.663,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -133,13 +133,13 @@ description: Variables in memory after executing countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.6068, 0.607,
1.5478 1.548
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.7738, 2.774,
0.6983 0.698
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -157,13 +157,13 @@ description: Variables in memory after executing countersunk-plate.kcl
-0.0 -0.0
], ],
"from": [ "from": [
2.7738, 2.774,
0.6983 0.698
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.7737, 2.774,
-0.6983 -0.698
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -176,13 +176,13 @@ description: Variables in memory after executing countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.7737, 2.774,
-0.6983 -0.698
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6068, 0.607,
-1.5478 -1.548
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -200,13 +200,13 @@ description: Variables in memory after executing countersunk-plate.kcl
-0.0 -0.0
], ],
"from": [ "from": [
0.6068, 0.607,
-1.5478 -1.548
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.6068, -0.607,
-1.5478 -1.548
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -219,13 +219,13 @@ description: Variables in memory after executing countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.6068, -0.607,
-1.5478 -1.548
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.7738, -2.774,
-0.6983 -0.698
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -243,13 +243,13 @@ description: Variables in memory after executing countersunk-plate.kcl
-0.0 -0.0
], ],
"from": [ "from": [
-2.7738, -2.774,
-0.6983 -0.698
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.7738, -2.774,
0.6983 0.698
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -262,13 +262,13 @@ description: Variables in memory after executing countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.7738, -2.774,
0.6983 0.698
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.6068, -0.607,
1.5478 1.548
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -286,13 +286,13 @@ description: Variables in memory after executing countersunk-plate.kcl
-0.0 -0.0
], ],
"from": [ "from": [
-0.6068, -0.607,
1.5478 1.548
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6068, 0.607,
1.5478 1.548
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -305,13 +305,13 @@ description: Variables in memory after executing countersunk-plate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.6068, 0.607,
1.5478 1.548
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6068, 0.607,
1.5478 1.548
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -351,12 +351,12 @@ description: Variables in memory after executing countersunk-plate.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.6068, 0.607,
1.5478 1.548
], ],
"to": [ "to": [
0.6068, 0.607,
1.5478 1.548
], ],
"units": { "units": {
"type": "Inches" "type": "Inches"
@ -397,7 +397,7 @@ description: Variables in memory after executing countersunk-plate.kcl
}, },
"r1": { "r1": {
"type": "Number", "type": "Number",
"value": 1.6625, "value": 1.663,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -423,7 +423,7 @@ description: Variables in memory after executing countersunk-plate.kcl
}, },
"tangentAngle": { "tangentAngle": {
"type": "Number", "type": "Number",
"value": 0.3736, "value": 0.374,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -432,7 +432,7 @@ description: Variables in memory after executing countersunk-plate.kcl
}, },
"tangentLength": { "tangentLength": {
"type": "Number", "type": "Number",
"value": 2.3275, "value": 2.328,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -1835,8 +1835,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -44.1242, "x": -44.124,
"y": 37.0246, "y": 37.025,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1869,7 +1869,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -24.683, "x": -24.683,
"y": -29.4161, "y": -29.416,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1902,7 +1902,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 7.354, "x": 7.354,
"y": -6.1708, "y": -6.171,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1951,8 +1951,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 25.4555, "x": 25.456,
"y": 11.2232, "y": 11.223,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -4365,8 +4365,8 @@ description: Artifact commands cpu-cooler.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 9.6418, "x": 9.642,
"y": 11.4907, "y": 11.491,
"z": 0.0 "z": 0.0
} }
} }
@ -4378,7 +4378,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 12.9904, "x": 12.99,
"y": 7.5, "y": 7.5,
"z": 0.0 "z": 0.0
} }
@ -4550,12 +4550,12 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 15.8879, "x": 15.888,
"y": 21.084, "y": 21.084,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 45.7261, "x": 45.726,
"y": 26.4, "y": 26.4,
"z": 0.0 "z": 0.0
}, },
@ -4572,13 +4572,13 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 22.1409, "x": 22.141,
"y": 14.3785, "y": 14.378,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 51.9978, "x": 51.998,
"y": 9.1686, "y": 9.169,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4594,13 +4594,13 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 26.3638, "x": 26.364,
"y": 1.3817, "y": 1.382,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 49.6158, "x": 49.616,
"y": -18.0587, "y": -18.059,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4616,12 +4616,12 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 46.6196, "x": 46.62,
"y": 24.7881, "y": 24.788,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 47.4563, "x": 47.456,
"y": 23.146, "y": 23.146,
"z": 0.0 "z": 0.0
}, },
@ -4638,13 +4638,13 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 52.2862, "x": 52.286,
"y": 7.3483, "y": 7.348,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 52.5108, "x": 52.511,
"y": 5.5191, "y": 5.519,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4660,13 +4660,13 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 48.9553, "x": 48.955,
"y": -19.7792, "y": -19.779,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 48.2352, "x": 48.235,
"y": -21.4757, "y": -21.476,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4682,13 +4682,13 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 18.6676, "x": 18.668,
"y": 18.6676, "y": 18.668,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 9.6418, "x": 9.642,
"y": 11.4907, "y": 11.491,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4704,12 +4704,12 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 23.9265, "x": 23.927,
"y": 11.1571, "y": 11.157,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 12.9904, "x": 12.99,
"y": 7.5, "y": 7.5,
"z": 0.0 "z": 0.0
}, },
@ -4726,8 +4726,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 26.2995, "x": 26.3,
"y": -2.3009, "y": -2.301,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
@ -5544,7 +5544,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 44.9438, "x": 44.944,
"y": 158.0, "y": 158.0,
"z": 0.0 "z": 0.0
} }
@ -5582,7 +5582,7 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 44.9438, "x": 44.944,
"y": 40.0, "y": 40.0,
"z": 0.0 "z": 0.0
}, },
@ -5665,7 +5665,7 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -14.9438, "x": -14.944,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -5714,7 +5714,7 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -12.6224, "x": -12.622,
"y": 158.0, "y": 158.0,
"z": 0.0 "z": 0.0
}, },
@ -5795,7 +5795,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -4.0, "x": -4.0,
"y": 44.9438 "y": 44.944
}, },
"radius": 3.0, "radius": 3.0,
"start": { "start": {
@ -5818,7 +5818,7 @@ description: Artifact commands cpu-cooler.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -1.0, "x": -1.0,
"y": 44.9438, "y": 44.944,
"z": 0.0 "z": 0.0
} }
} }
@ -5898,7 +5898,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -4.0, "x": -4.0,
"y": 44.9438 "y": 44.944
}, },
"radius": 2.5, "radius": 2.5,
"start": { "start": {
@ -5921,7 +5921,7 @@ description: Artifact commands cpu-cooler.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -1.5, "x": -1.5,
"y": 44.9438, "y": 44.944,
"z": 0.0 "z": 0.0
} }
} }
@ -6215,7 +6215,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 1.25, "x": 1.25,
"y": -2.1651, "y": -2.165,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -6249,12 +6249,12 @@ description: Artifact commands cpu-cooler.kcl
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": 12.0, "x": 12.0,
"y": -60.9651, "y": -60.965,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": 13.0, "x": 13.0,
"y": -62.1651, "y": -62.165,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -6288,7 +6288,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 1.25, "x": 1.25,
"y": 2.1651, "y": 2.165,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -6482,7 +6482,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 3.6667 "z": 3.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6511,7 +6511,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 7.3333 "z": 7.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6569,7 +6569,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 14.6667 "z": 14.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6598,7 +6598,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 18.3333 "z": 18.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6656,7 +6656,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 25.6667 "z": 25.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6685,7 +6685,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 29.3333 "z": 29.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6743,7 +6743,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 36.6667 "z": 36.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6772,7 +6772,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 40.3333 "z": 40.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6830,7 +6830,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 47.6667 "z": 47.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6859,7 +6859,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 51.3333 "z": 51.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6917,7 +6917,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 58.6667 "z": 58.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -6946,7 +6946,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 62.3333 "z": 62.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7004,7 +7004,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 69.6667 "z": 69.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7033,7 +7033,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 73.3333 "z": 73.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7091,7 +7091,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 80.6667 "z": 80.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7120,7 +7120,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 84.3333 "z": 84.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7178,7 +7178,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 91.6667 "z": 91.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7207,7 +7207,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 95.3333 "z": 95.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7265,7 +7265,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 102.6667 "z": 102.667
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -7294,7 +7294,7 @@ description: Artifact commands cpu-cooler.kcl
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 106.3333 "z": 106.333
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -8151,8 +8151,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -13.1557, "x": -13.156,
"y": -4.7883, "y": -4.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -8184,8 +8184,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -21.1734, "x": -21.173,
"y": 3.7334, "y": 3.733,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -8202,7 +8202,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.369, "x": 0.369,
"y": 2.0927, "y": 2.093,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -8218,8 +8218,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 21.1734, "x": 21.173,
"y": -3.7334, "y": -3.733,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -8251,8 +8251,8 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 13.1557, "x": 13.156,
"y": 4.7883, "y": 4.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -9450,7 +9450,7 @@ description: Artifact commands cpu-cooler.kcl
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 152.6527 "z": 152.653
}, },
"x_axis": { "x_axis": {
"x": 1.0, "x": 1.0,
@ -9504,7 +9504,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -43.8797, "x": -43.88,
"y": -62.0, "y": -62.0,
"z": 0.0 "z": 0.0
} }
@ -9608,7 +9608,7 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 8.3333, "x": 8.333,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -9624,7 +9624,7 @@ description: Artifact commands cpu-cooler.kcl
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 47.3473 "z": 47.347
}, },
"x_axis": { "x_axis": {
"x": 1.0, "x": 1.0,
@ -9678,7 +9678,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -43.8797, "x": -43.88,
"y": -62.0, "y": -62.0,
"z": 0.0 "z": 0.0
} }
@ -9782,7 +9782,7 @@ description: Artifact commands cpu-cooler.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 8.3333, "x": 8.333,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -9796,7 +9796,7 @@ description: Artifact commands cpu-cooler.kcl
"command": { "command": {
"type": "make_plane", "type": "make_plane",
"origin": { "origin": {
"x": -43.8797, "x": -43.88,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -9863,7 +9863,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -62.0, "x": -62.0,
"y": 152.6527 "y": 152.653
}, },
"radius": 1.0, "radius": 1.0,
"start": { "start": {
@ -9886,7 +9886,7 @@ description: Artifact commands cpu-cooler.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -61.0, "x": -61.0,
"y": 152.6527, "y": 152.653,
"z": 0.0 "z": 0.0
} }
} }
@ -9995,7 +9995,7 @@ description: Artifact commands cpu-cooler.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -62.0, "x": -62.0,
"y": 47.3473 "y": 47.347
}, },
"radius": 1.0, "radius": 1.0,
"start": { "start": {
@ -10018,7 +10018,7 @@ description: Artifact commands cpu-cooler.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -61.0, "x": -61.0,
"y": 47.3473, "y": 47.347,
"z": 0.0 "z": 0.0
} }
} }

View File

@ -440,7 +440,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 6.0, "x": 6.0,
"y": 10.3923, "y": 10.392,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -457,7 +457,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 5.0, "x": 5.0,
"y": 8.6603, "y": 8.66,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -508,7 +508,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 6.0, "x": 6.0,
"y": -10.3923, "y": -10.392,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -525,7 +525,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 5.0, "x": 5.0,
"y": -8.6603, "y": -8.66,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -542,7 +542,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -6.0, "x": -6.0,
"y": -10.3923, "y": -10.392,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -559,7 +559,7 @@ description: Artifact commands curtain-wall-anchor-plate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -5.0, "x": -5.0,
"y": -8.6603, "y": -8.66,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true

View File

@ -489,7 +489,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
"tag": null, "tag": null,
"to": [ "to": [
-6.0, -6.0,
10.3923 10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -503,12 +503,12 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
-6.0, -6.0,
10.3923 10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
6.0, 6.0,
10.3923 10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -522,7 +522,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
6.0, 6.0,
10.3923 10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -546,7 +546,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
"tag": null, "tag": null,
"to": [ "to": [
6.0, 6.0,
-10.3923 -10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -560,12 +560,12 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
6.0, 6.0,
-10.3923 -10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
-6.0, -6.0,
-10.3923 -10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -579,7 +579,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
-6.0, -6.0,
-10.3923 -10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -931,7 +931,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
"tag": null, "tag": null,
"to": [ "to": [
-6.0, -6.0,
10.3923 10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -945,12 +945,12 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
-6.0, -6.0,
10.3923 10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
6.0, 6.0,
10.3923 10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -964,7 +964,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
6.0, 6.0,
10.3923 10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -988,7 +988,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
"tag": null, "tag": null,
"to": [ "to": [
6.0, 6.0,
-10.3923 -10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1002,12 +1002,12 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
6.0, 6.0,
-10.3923 -10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [
-6.0, -6.0,
-10.3923 -10.392
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1021,7 +1021,7 @@ description: Variables in memory after executing curtain-wall-anchor-plate.kcl
}, },
"from": [ "from": [
-6.0, -6.0,
-10.3923 -10.392
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -214,8 +214,8 @@ description: Artifact commands cycloidal-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 13.9458, "x": 13.946,
"y": -1.7547, "y": -1.755,
"z": 0.0 "z": 0.0
} }
} }
@ -227,8 +227,8 @@ description: Artifact commands cycloidal-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 9.5552, "x": 9.555,
"y": -10.3084, "y": -10.308,
"z": 0.0 "z": 0.0
} }
} }
@ -336,7 +336,7 @@ description: Artifact commands cycloidal-gear.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 9.0478, "x": 9.048,
"y": -7.592 "y": -7.592
}, },
"radius": 7.619999999999999, "radius": 7.619999999999999,
@ -362,7 +362,7 @@ description: Artifact commands cycloidal-gear.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 2.051, "x": 2.051,
"y": -11.6316 "y": -11.632
}, },
"radius": 7.619999999999999, "radius": 7.619999999999999,
"start": { "start": {
@ -578,8 +578,8 @@ description: Artifact commands cycloidal-gear.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 11.0205, "x": 11.021,
"y": -6.3627, "y": -6.363,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -595,7 +595,7 @@ description: Artifact commands cycloidal-gear.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 4.3523, "x": 4.352,
"y": -11.958, "y": -11.958,
"z": 0.0 "z": 0.0
}, },
@ -612,7 +612,7 @@ description: Artifact commands cycloidal-gear.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -4.3523, "x": -4.352,
"y": -11.958, "y": -11.958,
"z": 0.0 "z": 0.0
}, },
@ -852,7 +852,7 @@ description: Artifact commands cycloidal-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.7719, "x": 3.772,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -865,7 +865,7 @@ description: Artifact commands cycloidal-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.7719, "x": 3.772,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -878,7 +878,7 @@ description: Artifact commands cycloidal-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.7719, "x": 3.772,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -3807,7 +3807,7 @@ description: Variables in memory after executing engine-valve.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
-15.475, -15.475,
14.9917 14.992
], ],
"from": [ "from": [
-2.99, -2.99,
@ -3836,8 +3836,8 @@ description: Variables in memory after executing engine-valve.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-10.7759, -10.776,
-1.2241 -1.224
], ],
"from": [ "from": [
-12.0, -12.0,
@ -4108,7 +4108,7 @@ description: Variables in memory after executing engine-valve.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
-15.475, -15.475,
14.9917 14.992
], ],
"from": [ "from": [
-2.99, -2.99,
@ -4137,8 +4137,8 @@ description: Variables in memory after executing engine-valve.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-10.7759, -10.776,
-1.2241 -1.224
], ],
"from": [ "from": [
-12.0, -12.0,

View File

@ -65,8 +65,8 @@ description: Artifact commands exhaust-manifold.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": -0.0175, "x": -0.017,
"y": 0.9998, "y": 1.0,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -90,8 +90,8 @@ description: Artifact commands exhaust-manifold.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": -0.4115, "x": -0.412,
"y": 0.9114, "y": 0.911,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -115,8 +115,8 @@ description: Artifact commands exhaust-manifold.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": -0.4258, "x": -0.426,
"y": 0.9048, "y": 0.905,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -155,8 +155,8 @@ description: Artifact commands exhaust-manifold.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.9998, "x": 1.0,
"y": 0.0175, "y": 0.017,
"z": -0.0 "z": -0.0
} }
} }
@ -171,8 +171,8 @@ description: Artifact commands exhaust-manifold.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.9114, "x": 0.911,
"y": 0.4115, "y": 0.412,
"z": -0.0 "z": -0.0
} }
} }
@ -187,8 +187,8 @@ description: Artifact commands exhaust-manifold.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.9048, "x": 0.905,
"y": 0.4258, "y": 0.426,
"z": -0.0 "z": -0.0
} }
} }
@ -478,7 +478,7 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 150.0847, "x": 150.085,
"y": 26.464, "y": 26.464,
"z": 0.0 "z": 0.0
}, },
@ -495,7 +495,7 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 150.0847, "x": 150.085,
"y": 26.464, "y": 26.464,
"z": 0.0 "z": 0.0
}, },
@ -512,8 +512,8 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 125.0706, "x": 125.071,
"y": 22.0533, "y": 22.053,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -529,8 +529,8 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 125.0706, "x": 125.071,
"y": 22.0533, "y": 22.053,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -610,8 +610,8 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.0688, "x": -11.069,
"y": 126.5167, "y": 126.517,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -627,8 +627,8 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.0688, "x": -11.069,
"y": 126.5167, "y": 126.517,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -644,7 +644,7 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -6.6413, "x": -6.641,
"y": 75.91, "y": 75.91,
"z": 0.0 "z": 0.0
}, },
@ -661,7 +661,7 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -6.6413, "x": -6.641,
"y": 75.91, "y": 75.91,
"z": 0.0 "z": 0.0
}, },
@ -972,7 +972,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 20.6375, "x": 20.638,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -985,7 +985,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 71.4375, "x": 71.438,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -998,7 +998,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 122.2375, "x": 122.238,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1011,7 +1011,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 173.0375, "x": 173.038,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1348,7 +1348,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 18.6055, "x": 18.606,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1361,7 +1361,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 69.4055, "x": 69.405,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1374,7 +1374,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 120.2055, "x": 120.205,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1387,7 +1387,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 171.0055, "x": 171.005,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -1895,7 +1895,7 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 184.6922, "x": 184.692,
"y": -31.75, "y": -31.75,
"z": 0.0 "z": 0.0
}, },
@ -1961,8 +1961,8 @@ description: Artifact commands exhaust-manifold.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -5.6259, "x": -5.626,
"y": -1.7827, "y": -1.783,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -2051,7 +2051,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 18.6055, "x": 18.606,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2145,7 +2145,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 69.4055, "x": 69.405,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2239,7 +2239,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 120.2055, "x": 120.205,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2333,7 +2333,7 @@ description: Artifact commands exhaust-manifold.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 171.0055, "x": 171.005,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -223,8 +223,8 @@ description: Variables in memory after executing exhaust-manifold.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5072, 1.507,
-1.1798 -1.18
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -238,17 +238,17 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.9287, 0.929,
-1.8693 -1.869
], ],
"from": [ "from": [
1.5072, 1.507,
-1.1798 -1.18
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.3501, 0.35,
-1.1798 -1.18
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -262,16 +262,16 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.1573, 0.157,
-0.95 -0.95
], ],
"from": [ "from": [
0.3501, 0.35,
-1.1798 -1.18
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.1573, 0.157,
-1.25 -1.25
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -285,7 +285,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.1573, 0.157,
-1.25 -1.25
], ],
"tag": { "tag": {
@ -296,7 +296,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
-1.2427, -1.243,
-1.25 -1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -310,7 +310,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-1.2427, -1.243,
-1.25 -1.25
], ],
"tag": { "tag": {
@ -321,7 +321,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-1.2427, -1.243,
1.35 1.35
], ],
"type": "ToPoint", "type": "ToPoint",
@ -335,7 +335,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-1.2427, -1.243,
1.35 1.35
], ],
"tag": { "tag": {
@ -346,7 +346,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg05" "value": "seg05"
}, },
"to": [ "to": [
1.8573, 1.857,
1.35 1.35
], ],
"type": "ToPoint", "type": "ToPoint",
@ -361,17 +361,17 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
1.8573, 1.857,
1.05 1.05
], ],
"from": [ "from": [
1.8573, 1.857,
1.35 1.35
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.0501, 2.05,
1.2798 1.28
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -385,17 +385,17 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
3.0143, 3.014,
2.4289 2.429
], ],
"from": [ "from": [
2.0501, 2.05,
1.2798 1.28
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.9785, 3.979,
1.2798 1.28
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -409,16 +409,16 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
4.1713, 4.171,
1.05 1.05
], ],
"from": [ "from": [
3.9785, 3.979,
1.2798 1.28
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.1713, 4.171,
1.35 1.35
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -432,7 +432,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.1713, 4.171,
1.35 1.35
], ],
"tag": { "tag": {
@ -443,7 +443,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg07" "value": "seg07"
}, },
"to": [ "to": [
7.2713, 7.271,
1.35 1.35
], ],
"type": "ToPoint", "type": "ToPoint",
@ -457,7 +457,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
7.2713, 7.271,
1.35 1.35
], ],
"tag": { "tag": {
@ -468,7 +468,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg08" "value": "seg08"
}, },
"to": [ "to": [
7.2713, 7.271,
-1.25 -1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -482,7 +482,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
7.2713, 7.271,
-1.25 -1.25
], ],
"tag": { "tag": {
@ -493,7 +493,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
"value": "seg09" "value": "seg09"
}, },
"to": [ "to": [
5.8713, 5.871,
-1.25 -1.25
], ],
"type": "ToPoint", "type": "ToPoint",
@ -508,17 +508,17 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
5.8713, 5.871,
-0.95 -0.95
], ],
"from": [ "from": [
5.8713, 5.871,
-1.25 -1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
5.6785, 5.679,
-1.1798 -1.18
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -533,16 +533,16 @@ description: Variables in memory after executing exhaust-manifold.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
5.1, 5.1,
-1.8693 -1.869
], ],
"from": [ "from": [
5.6785, 5.679,
-1.1798 -1.18
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.5215, 4.521,
-1.1798 -1.18
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -556,12 +556,12 @@ description: Variables in memory after executing exhaust-manifold.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
4.3257, 4.326,
-0.9465 -0.946
], ],
"from": [ "from": [
4.5215, 4.521,
-1.1798 -1.18
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -110,7 +110,7 @@ description: Artifact commands flange.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 52.3875, "x": 52.387,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -232,7 +232,7 @@ description: Artifact commands flange.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 58.7375, "x": 58.738,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -436,7 +436,7 @@ description: Artifact commands flange.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 29.3751, "x": 29.375,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -123,13 +123,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"radius": 2.3125, "radius": 2.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -170,11 +170,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"units": { "units": {
@ -283,13 +283,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -330,11 +330,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"units": { "units": {
@ -370,13 +370,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -417,11 +417,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"units": { "units": {
@ -457,13 +457,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -504,11 +504,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"units": { "units": {
@ -544,13 +544,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"radius": 0.3125, "radius": 0.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -591,11 +591,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.0625, 2.063,
0.0 0.0
], ],
"to": [ "to": [
2.0625, 2.063,
0.0 0.0
], ],
"units": { "units": {
@ -646,13 +646,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"radius": 2.3125, "radius": 2.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -693,11 +693,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"units": { "units": {
@ -870,13 +870,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
1.1565, 1.157,
0.0 0.0
], ],
"radius": 1.1565, "radius": 1.1565,
"tag": null, "tag": null,
"to": [ "to": [
1.1565, 1.157,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -934,13 +934,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"radius": 2.3125, "radius": 2.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -981,11 +981,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"units": { "units": {
@ -1017,11 +1017,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
1.1565, 1.157,
0.0 0.0
], ],
"to": [ "to": [
1.1565, 1.157,
0.0 0.0
], ],
"units": { "units": {
@ -1114,13 +1114,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
1.1565, 1.157,
0.0 0.0
], ],
"radius": 1.1565, "radius": 1.1565,
"tag": null, "tag": null,
"to": [ "to": [
1.1565, 1.157,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -1178,13 +1178,13 @@ description: Variables in memory after executing flange.kcl
0.0 0.0
], ],
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"radius": 2.3125, "radius": 2.3125,
"tag": null, "tag": null,
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -1225,11 +1225,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
2.3125, 2.313,
0.0 0.0
], ],
"to": [ "to": [
2.3125, 2.313,
0.0 0.0
], ],
"units": { "units": {
@ -1261,11 +1261,11 @@ description: Variables in memory after executing flange.kcl
}, },
"start": { "start": {
"from": [ "from": [
1.1565, 1.157,
0.0 0.0
], ],
"to": [ "to": [
1.1565, 1.157,
0.0 0.0
], ],
"units": { "units": {

View File

@ -444,7 +444,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 12.0, "x": 12.0,
"y": -8.3333, "y": -8.333,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -461,7 +461,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -16.6667, "y": -16.667,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -478,7 +478,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -12.0, "x": -12.0,
"y": -8.3333, "y": -8.333,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -545,7 +545,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 82.0, "x": 82.0,
"y": 27.3333 "y": 27.333
}, },
"radius": 2.5, "radius": 2.5,
"start": { "start": {
@ -568,7 +568,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 84.5, "x": 84.5,
"y": 27.3333, "y": 27.333,
"z": 0.0 "z": 0.0
} }
} }
@ -708,7 +708,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
{ {
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": -54.6667, "y": -54.667,
"z": 0.0 "z": 0.0
}, },
"scale": { "scale": {
@ -823,7 +823,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -12.0, "x": -12.0,
"y": -8.3333, "y": -8.333,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -840,7 +840,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -16.6667, "y": -16.667,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -857,7 +857,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 12.0, "x": 12.0,
"y": -8.3333, "y": -8.333,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -924,7 +924,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -82.0, "x": -82.0,
"y": 27.3333 "y": 27.333
}, },
"radius": 2.5, "radius": 2.5,
"start": { "start": {
@ -947,7 +947,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -79.5, "x": -79.5,
"y": 27.3333, "y": 27.333,
"z": 0.0 "z": 0.0
} }
} }
@ -1087,7 +1087,7 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
{ {
"translate": { "translate": {
"x": 0.0, "x": 0.0,
"y": -54.6667, "y": -54.667,
"z": 0.0 "z": 0.0
}, },
"scale": { "scale": {

View File

@ -699,7 +699,7 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"distance": { "distance": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 54.6667, "value": 54.667,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1089,7 +1089,7 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
"distance": { "distance": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 54.6667, "value": 54.667,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -1924,7 +1924,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
-88.0, -88.0,
35.6667 35.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1938,7 +1938,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
-88.0, -88.0,
35.6667 35.667
], ],
"tag": { "tag": {
"commentStart": 2979, "commentStart": 2979,
@ -1974,7 +1974,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
-76.0, -76.0,
10.6667 10.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1988,7 +1988,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
-76.0, -76.0,
10.6667 10.667
], ],
"tag": { "tag": {
"commentStart": 3064, "commentStart": 3064,
@ -2208,7 +2208,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
-88.0, -88.0,
35.6667 35.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2222,7 +2222,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
-88.0, -88.0,
35.6667 35.667
], ],
"tag": { "tag": {
"commentStart": 2979, "commentStart": 2979,
@ -2258,7 +2258,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
-76.0, -76.0,
10.6667 10.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2272,7 +2272,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
-76.0, -76.0,
10.6667 10.667
], ],
"tag": { "tag": {
"commentStart": 3064, "commentStart": 3064,
@ -2497,7 +2497,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
88.0, 88.0,
35.6667 35.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2511,7 +2511,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
88.0, 88.0,
35.6667 35.667
], ],
"tag": { "tag": {
"commentStart": 2153, "commentStart": 2153,
@ -2547,7 +2547,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
76.0, 76.0,
10.6667 10.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2561,7 +2561,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
76.0, 76.0,
10.6667 10.667
], ],
"tag": { "tag": {
"commentStart": 2239, "commentStart": 2239,
@ -2781,7 +2781,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
88.0, 88.0,
35.6667 35.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2795,7 +2795,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
88.0, 88.0,
35.6667 35.667
], ],
"tag": { "tag": {
"commentStart": 2153, "commentStart": 2153,
@ -2831,7 +2831,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"to": [ "to": [
76.0, 76.0,
10.6667 10.667
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2845,7 +2845,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
}, },
"from": [ "from": [
76.0, 76.0,
10.6667 10.667
], ],
"tag": { "tag": {
"commentStart": 2239, "commentStart": 2239,

View File

@ -109,8 +109,8 @@ description: Artifact commands food-service-spatula.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -24.8334, "x": -24.833,
"y": 22.9972, "y": 22.997,
"z": 0.0 "z": 0.0
} }
} }
@ -122,8 +122,8 @@ description: Artifact commands food-service-spatula.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -25.1666, "x": -25.167,
"y": -13.0028, "y": -13.003,
"z": 0.0 "z": 0.0
} }
} }
@ -423,8 +423,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.3331, "x": 0.333,
"y": 9.9944, "y": 9.994,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -440,8 +440,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -0.3331, "x": -0.333,
"y": 9.9944, "y": 9.994,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -625,17 +625,17 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 35.2426, "x": 35.243,
"y": -0.0 "y": -0.0
}, },
"radius": 110.0, "radius": 110.0,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 163.0876 "value": 163.088
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
"value": 196.9124 "value": 196.912
}, },
"relative": false "relative": false
} }
@ -903,8 +903,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 31.8198, "x": 31.82,
"y": 31.8198, "y": 31.82,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -920,7 +920,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 140.9539, "x": 140.954,
"y": 51.303, "y": 51.303,
"z": 0.0 "z": 0.0
}, },
@ -937,8 +937,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.7101, "x": -1.71,
"y": 4.6985, "y": 4.698,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -954,8 +954,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -141.9955, "x": -141.996,
"y": -51.6821, "y": -51.682,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -971,8 +971,8 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -36.1391, "x": -36.139,
"y": -36.1391, "y": -36.139,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -988,7 +988,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 7.0711, "x": 7.071,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1110,14 +1110,14 @@ description: Artifact commands food-service-spatula.kcl
"command": { "command": {
"type": "make_plane", "type": "make_plane",
"origin": { "origin": {
"x": 208.5938, "x": 208.594,
"y": 0.0, "y": 0.0,
"z": 75.9219 "z": 75.922
}, },
"x_axis": { "x_axis": {
"x": 0.342, "x": 0.342,
"y": -0.0, "y": -0.0,
"z": -0.9397 "z": -0.94
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
@ -1139,7 +1139,7 @@ description: Artifact commands food-service-spatula.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.9397, "x": 0.94,
"y": -0.0, "y": -0.0,
"z": 0.342 "z": 0.342
} }
@ -1152,7 +1152,7 @@ description: Artifact commands food-service-spatula.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -26.8067, "x": -26.807,
"y": -10.0, "y": -10.0,
"z": 0.0 "z": 0.0
} }
@ -1207,7 +1207,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -22.8067, "x": -22.807,
"y": -7.0 "y": -7.0
}, },
"radius": 3.0, "radius": 3.0,
@ -1249,7 +1249,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -22.8067, "x": -22.807,
"y": 7.0 "y": 7.0
}, },
"radius": 3.0, "radius": 3.0,
@ -1291,7 +1291,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -26.8067, "x": -26.807,
"y": 7.0 "y": 7.0
}, },
"radius": 3.0, "radius": 3.0,
@ -1333,7 +1333,7 @@ description: Artifact commands food-service-spatula.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -26.8067, "x": -26.807,
"y": -7.0 "y": -7.0
}, },
"radius": 3.0, "radius": 3.0,
@ -1367,7 +1367,7 @@ description: Artifact commands food-service-spatula.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.9397, "x": 0.94,
"y": -0.0, "y": -0.0,
"z": 0.342 "z": 0.342
} }

View File

@ -34,7 +34,7 @@ description: Operations executed food-service-spatula.kcl
"unlabeledArg": { "unlabeledArg": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.0333, "value": -0.033,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -56,7 +56,7 @@ description: Operations executed food-service-spatula.kcl
"unlabeledArg": { "unlabeledArg": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.0333, "value": 0.033,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",

View File

@ -235,8 +235,8 @@ description: Artifact commands french-press.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.7071, "x": 0.707,
"y": 0.7071, "y": 0.707,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -259,8 +259,8 @@ description: Artifact commands french-press.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.7071, "x": 0.707,
"y": -0.7071, "y": -0.707,
"z": 0.0 "z": 0.0
} }
} }
@ -370,7 +370,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 7.62, "x": 7.62,
"y": -13.1982, "y": -13.198,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -386,8 +386,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 53.6827, "x": 53.683,
"y": -11.3386 "y": -11.339
}, },
"radius": 15.239999999999998, "radius": 15.239999999999998,
"start": { "start": {
@ -411,7 +411,7 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 12.3625, "x": 12.363,
"y": -5.08, "y": -5.08,
"z": 0.0 "z": 0.0
}, },
@ -428,8 +428,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 6.0125, "x": 6.013,
"y": -16.0785 "y": -16.079
}, },
"radius": 12.7, "radius": 12.7,
"start": { "start": {
@ -454,7 +454,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 2.54, "x": 2.54,
"y": -3.3785, "y": -3.379,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -487,7 +487,7 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 4.3615, "x": 4.362,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -504,8 +504,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 6.9015, "x": 6.902,
"y": -16.0785 "y": -16.079
}, },
"radius": 15.239999999999998, "radius": 15.239999999999998,
"start": { "start": {
@ -529,8 +529,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 32.9303, "x": 32.93,
"y": -19.0123, "y": -19.012,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -546,8 +546,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 53.8018, "x": 53.802,
"y": -10.8941 "y": -10.894
}, },
"radius": 12.7, "radius": 12.7,
"start": { "start": {
@ -571,8 +571,8 @@ description: Artifact commands french-press.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -7.1755, "x": -7.175,
"y": 12.4283, "y": 12.428,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -639,8 +639,8 @@ description: Artifact commands french-press.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.7071, "x": 0.707,
"y": -0.7071, "y": -0.707,
"z": 0.0 "z": 0.0
} }
} }
@ -1284,7 +1284,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 54.229, "x": 54.229,
"y": 30.1004, "y": 30.1,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1301,7 +1301,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.635, "x": 0.635,
"y": -1.0999, "y": -1.1,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1318,7 +1318,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -3.302, "x": -3.302,
"y": -1.9064, "y": -1.906,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1335,7 +1335,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 3.81, "x": 3.81,
"y": 27.0941, "y": 27.094,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1513,7 +1513,7 @@ description: Artifact commands french-press.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 1.27, "x": 1.27,
"y": 24.7282, "y": 24.728,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -3149,7 +3149,7 @@ description: Artifact commands french-press.kcl
"z": 0.0 "z": 0.0
}, },
"control2": { "control2": {
"x": 11.2014, "x": 11.201,
"y": 25.4, "y": 25.4,
"z": 0.0 "z": 0.0
}, },

View File

@ -264,7 +264,7 @@ description: Artifact commands gear-rack.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -49.4323, "x": -49.432,
"y": 10.875, "y": 10.875,
"z": 0.0 "z": 0.0
} }
@ -293,8 +293,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.1576, "x": 0.158,
"y": 0.1104, "y": 0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -310,8 +310,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.3291, "x": 0.329,
"y": 0.9042, "y": 0.904,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -327,8 +327,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.1576, "x": 0.158,
"y": 0.1104, "y": 0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -344,7 +344,7 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.1865, "x": 0.187,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -361,8 +361,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.1576, "x": 0.158,
"y": -0.1104, "y": -0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -378,8 +378,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.3291, "x": 0.329,
"y": -0.9042, "y": -0.904,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -395,8 +395,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.1576, "x": 0.158,
"y": -0.1104, "y": -0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -482,7 +482,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 1.5708, "x": 1.571,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -511,7 +511,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 3.1416, "x": 3.142,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -540,7 +540,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 4.7124, "x": 4.712,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -569,7 +569,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 6.2832, "x": 6.283,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -627,7 +627,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 9.4248, "x": 9.425,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -656,7 +656,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 10.9956, "x": 10.996,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -685,7 +685,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 12.5664, "x": 12.566,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -714,7 +714,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 14.1372, "x": 14.137,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -772,7 +772,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 17.2788, "x": 17.279,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -801,7 +801,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 18.8496, "x": 18.85,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -830,7 +830,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 20.4203, "x": 20.42,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -859,7 +859,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 21.9911, "x": 21.991,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -888,7 +888,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 23.5619, "x": 23.562,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -917,7 +917,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 25.1327, "x": 25.133,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -946,7 +946,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 26.7035, "x": 26.704,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -975,7 +975,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 28.2743, "x": 28.274,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1004,7 +1004,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 29.8451, "x": 29.845,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1033,7 +1033,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 31.4159, "x": 31.416,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1062,7 +1062,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 32.9867, "x": 32.987,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1091,7 +1091,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 34.5575, "x": 34.558,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1120,7 +1120,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 36.1283, "x": 36.128,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1149,7 +1149,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 37.6991, "x": 37.699,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1178,7 +1178,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 39.2699, "x": 39.27,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1207,7 +1207,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 40.8407, "x": 40.841,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1236,7 +1236,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 42.4115, "x": 42.411,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1265,7 +1265,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 43.9823, "x": 43.982,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1294,7 +1294,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 45.5531, "x": 45.553,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1323,7 +1323,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 47.1239, "x": 47.124,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1352,7 +1352,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 48.6947, "x": 48.695,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1381,7 +1381,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 50.2655, "x": 50.265,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1410,7 +1410,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 51.8363, "x": 51.836,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1439,7 +1439,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 53.4071, "x": 53.407,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1468,7 +1468,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 54.9779, "x": 54.978,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1497,7 +1497,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 56.5487, "x": 56.549,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1526,7 +1526,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 58.1195, "x": 58.119,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1555,7 +1555,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 59.6902, "x": 59.69,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1613,7 +1613,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 62.8318, "x": 62.832,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1642,7 +1642,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 64.4026, "x": 64.403,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1671,7 +1671,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 65.9734, "x": 65.973,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1700,7 +1700,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 67.5442, "x": 67.544,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1758,7 +1758,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 70.6858, "x": 70.686,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1787,7 +1787,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 72.2566, "x": 72.257,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1816,7 +1816,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 73.8274, "x": 73.827,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1845,7 +1845,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 75.3982, "x": 75.398,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1903,7 +1903,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 78.5398, "x": 78.54,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1932,7 +1932,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 80.1106, "x": 80.111,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1961,7 +1961,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 81.6814, "x": 81.681,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1990,7 +1990,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 83.2522, "x": 83.252,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2048,7 +2048,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 86.3938, "x": 86.394,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2077,7 +2077,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 87.9646, "x": 87.965,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2106,7 +2106,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 89.5354, "x": 89.535,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2135,7 +2135,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 91.1062, "x": 91.106,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2193,7 +2193,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 94.2478, "x": 94.248,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2222,7 +2222,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 95.8186, "x": 95.819,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2251,7 +2251,7 @@ description: Artifact commands gear-rack.kcl
[ [
{ {
"translate": { "translate": {
"x": 97.3894, "x": 97.389,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2329,7 +2329,7 @@ description: Artifact commands gear-rack.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -50.0, "x": -50.0,
"y": 11.8495, "y": 11.85,
"z": 0.0 "z": 0.0
} }
} }
@ -2357,8 +2357,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.3145, "x": 0.315,
"y": -0.8641, "y": -0.864,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2374,8 +2374,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 0.1576, "x": 0.158,
"y": -0.1104, "y": -0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -2516,7 +2516,7 @@ description: Artifact commands gear-rack.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 50.0, "x": 50.0,
"y": 11.8495, "y": 11.85,
"z": 0.0 "z": 0.0
} }
} }
@ -2544,8 +2544,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.3145, "x": -0.315,
"y": -0.8641, "y": -0.864,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2561,8 +2561,8 @@ description: Artifact commands gear-rack.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -0.1576, "x": -0.158,
"y": -0.1104, "y": -0.11,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null

View File

@ -167,7 +167,7 @@ description: Operations executed gear-rack.kcl
"distance": { "distance": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

File diff suppressed because it is too large Load Diff

View File

@ -3325,7 +3325,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 5.7929, "y": 5.793,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3342,7 +3342,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 5.7929, "y": 5.793,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3359,7 +3359,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 5.7929, "y": 5.793,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3376,7 +3376,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 5.7929, "y": 5.793,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3393,7 +3393,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.5, "x": 0.5,
"y": 5.7929 "y": 5.793
}, },
"radius": 0.5, "radius": 0.5,
"start": { "start": {
@ -3418,7 +3418,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.5, "x": 0.5,
"y": 5.7929 "y": 5.793
}, },
"radius": 0.5, "radius": 0.5,
"start": { "start": {
@ -3443,7 +3443,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.5, "x": 0.5,
"y": 5.7929 "y": 5.793
}, },
"radius": 0.5, "radius": 0.5,
"start": { "start": {
@ -3468,7 +3468,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.5, "x": 0.5,
"y": 5.7929 "y": 5.793
}, },
"radius": 0.5, "radius": 0.5,
"start": { "start": {
@ -3492,8 +3492,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.0464, "x": 1.046,
"y": -1.0464, "y": -1.046,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3509,8 +3509,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.0464, "x": 1.046,
"y": -1.0464, "y": -1.046,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3526,8 +3526,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.0464, "x": 1.046,
"y": -1.0464, "y": -1.046,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3543,8 +3543,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.0464, "x": 1.046,
"y": -1.0464, "y": -1.046,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true

View File

@ -14401,7 +14401,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -14416,11 +14416,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -14431,8 +14431,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -14445,8 +14445,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -14741,7 +14741,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -14756,11 +14756,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -14771,8 +14771,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -14785,8 +14785,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -15086,7 +15086,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -15101,11 +15101,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -15116,8 +15116,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -15130,8 +15130,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -15426,7 +15426,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -15441,11 +15441,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -15456,8 +15456,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -15470,8 +15470,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -15788,7 +15788,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -15803,11 +15803,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -15818,8 +15818,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -15832,8 +15832,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -16128,7 +16128,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -16143,11 +16143,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -16158,8 +16158,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -16172,8 +16172,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -16483,7 +16483,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -16498,11 +16498,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -16513,8 +16513,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -16527,8 +16527,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -16823,7 +16823,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -16838,11 +16838,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -16853,8 +16853,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -16867,8 +16867,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -17163,7 +17163,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -17178,11 +17178,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -17193,8 +17193,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -17207,8 +17207,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -17503,7 +17503,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -17518,11 +17518,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -17533,8 +17533,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -17547,8 +17547,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -17911,7 +17911,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -17926,11 +17926,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -17941,8 +17941,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -17955,8 +17955,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,
@ -18251,7 +18251,7 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
}, },
"to": [ "to": [
0.0, 0.0,
5.7929 5.793
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -18266,11 +18266,11 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"ccw": false, "ccw": false,
"center": [ "center": [
0.5, 0.5,
5.7929 5.793
], ],
"from": [ "from": [
0.0, 0.0,
5.7929 5.793
], ],
"radius": 0.5, "radius": 0.5,
"tag": { "tag": {
@ -18281,8 +18281,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"value": "arc000" "value": "arc000"
}, },
"to": [ "to": [
0.8536, 0.854,
6.1464 6.146
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -18295,8 +18295,8 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.8536, 0.854,
6.1464 6.146
], ],
"tag": { "tag": {
"commentStart": 5705, "commentStart": 5705,

View File

@ -157,8 +157,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 2.9194, "x": 2.919,
"y": 4.1574, "y": 4.157,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -174,8 +174,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -8.9681, "x": -8.968,
"y": 8.9924, "y": 8.992,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -191,8 +191,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -86.1533, "x": -86.153,
"y": 25.4583, "y": 25.458,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -308,8 +308,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 2.3381, "x": 2.338,
"y": 0.9925, "y": 0.992,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -325,8 +325,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 31.6979, "x": 31.698,
"y": -10.2635, "y": -10.263,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -519,7 +519,7 @@ description: Artifact commands hammer.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -50.038, "x": -50.038,
"y": -14.2875, "y": -14.288,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -536,7 +536,7 @@ description: Artifact commands hammer.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -48.768, "x": -48.768,
"y": -14.2875 "y": -14.288
}, },
"radius": 1.27, "radius": 1.27,
"start": { "start": {
@ -561,7 +561,7 @@ description: Artifact commands hammer.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -42.418, "x": -42.418,
"y": -15.5575, "y": -15.558,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -578,12 +578,12 @@ description: Artifact commands hammer.kcl
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": -25.654, "x": -25.654,
"y": -14.7955, "y": -14.795,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": -23.114, "x": -23.114,
"y": -15.5575, "y": -15.558,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -600,7 +600,7 @@ description: Artifact commands hammer.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 109.22, "x": 109.22,
"y": -13.6525, "y": -13.652,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -770,8 +770,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.5365, "x": -2.537,
"y": 0.1329, "y": 0.133,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -787,8 +787,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -36.3255, "x": -36.325,
"y": 4.6931, "y": 4.693,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -976,7 +976,7 @@ description: Artifact commands hammer.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -50.038, "x": -50.038,
"y": 14.2875, "y": 14.288,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -993,7 +993,7 @@ description: Artifact commands hammer.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": -48.768, "x": -48.768,
"y": 14.2875 "y": 14.288
}, },
"radius": 1.27, "radius": 1.27,
"start": { "start": {
@ -1018,7 +1018,7 @@ description: Artifact commands hammer.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -42.418, "x": -42.418,
"y": 15.5575, "y": 15.558,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1035,12 +1035,12 @@ description: Artifact commands hammer.kcl
"type": "arc_to", "type": "arc_to",
"interior": { "interior": {
"x": -25.654, "x": -25.654,
"y": 14.7955, "y": 14.795,
"z": 0.0 "z": 0.0
}, },
"end": { "end": {
"x": -23.114, "x": -23.114,
"y": 15.5575, "y": 15.558,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1057,7 +1057,7 @@ description: Artifact commands hammer.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 109.22, "x": 109.22,
"y": 13.6525, "y": 13.652,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1262,8 +1262,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 5.7537, "x": 5.754,
"y": 4.1803, "y": 4.18,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1279,8 +1279,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 2.1977, "x": 2.198,
"y": 6.7639, "y": 6.764,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1296,8 +1296,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.1977, "x": -2.198,
"y": 6.7639, "y": 6.764,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1313,8 +1313,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.7537, "x": -5.754,
"y": 4.1803, "y": 4.18,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1347,8 +1347,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.7537, "x": -5.754,
"y": -4.1803, "y": -4.18,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1364,8 +1364,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.1977, "x": -2.198,
"y": -6.7639, "y": -6.764,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1381,8 +1381,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 2.1977, "x": 2.198,
"y": -6.7639, "y": -6.764,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1398,8 +1398,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 5.7537, "x": 5.754,
"y": -4.1803, "y": -4.18,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1826,7 +1826,7 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 14.2875, "x": 14.288,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -1859,8 +1859,8 @@ description: Artifact commands hammer.kcl
"segment": { "segment": {
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -6.1595, "x": -6.16,
"y": 200.4173, "y": 200.417,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1877,7 +1877,7 @@ description: Artifact commands hammer.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -2.54, "x": -2.54,
"y": 123.4327, "y": 123.433,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null

View File

@ -338,7 +338,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.8929, 0.893,
11.36 11.36
], ],
"from": [ "from": [
@ -362,8 +362,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.5706, 0.571,
8.1992 8.199
], ],
"from": [ "from": [
0.95, 0.95,
@ -396,8 +396,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.8349, 2.835,
11.4237 11.424
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -410,13 +410,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.8349, 2.835,
11.4237 11.424
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.4819, 2.482,
11.7777 11.778
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -430,12 +430,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-0.1327, -0.133,
9.1702 9.17
], ],
"from": [ "from": [
2.4819, 2.482,
11.7777 11.778
], ],
"tag": { "tag": {
"commentStart": 617, "commentStart": 617,
@ -460,8 +460,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1784, -1.178,
14.0265 14.026
], ],
"from": [ "from": [
-0.91, -0.91,
@ -605,8 +605,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.5779, -1.578,
11.6641 11.664
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -620,12 +620,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1869, -1.187,
10.7428 10.743
], ],
"from": [ "from": [
-1.5779, -1.578,
11.6641 11.664
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -924,7 +924,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.8929, 0.893,
11.36 11.36
], ],
"from": [ "from": [
@ -948,8 +948,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.5706, 0.571,
8.1992 8.199
], ],
"from": [ "from": [
0.95, 0.95,
@ -982,8 +982,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.8349, 2.835,
11.4237 11.424
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -996,13 +996,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.8349, 2.835,
11.4237 11.424
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.4819, 2.482,
11.7777 11.778
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1016,12 +1016,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-0.1327, -0.133,
9.1702 9.17
], ],
"from": [ "from": [
2.4819, 2.482,
11.7777 11.778
], ],
"tag": { "tag": {
"commentStart": 617, "commentStart": 617,
@ -1046,8 +1046,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1784, -1.178,
14.0265 14.026
], ],
"from": [ "from": [
-0.91, -0.91,
@ -1191,8 +1191,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.5779, -1.578,
11.6641 11.664
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1206,12 +1206,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1869, -1.187,
10.7428 10.743
], ],
"from": [ "from": [
-1.5779, -1.578,
11.6641 11.664
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1408,7 +1408,7 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.5725, 0.573,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1423,16 +1423,16 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.5725, 0.573,
0.05 0.05
], ],
"from": [ "from": [
0.5725, 0.573,
0.0 0.0
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6225, 0.623,
0.05 0.05
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -1447,17 +1447,17 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-127.8681, -127.868,
0.05 0.05
], ],
"from": [ "from": [
0.6225, 0.623,
0.05 0.05
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.38, 0.38,
7.9404 7.94
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -1471,12 +1471,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
59.7449, 59.745,
11.5929 11.593
], ],
"from": [ "from": [
0.38, 0.38,
7.9404 7.94
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1702,8 +1702,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.2265, 0.227,
0.1646 0.165
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1716,13 +1716,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.2265, 0.227,
0.1646 0.165
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0865, 0.087,
0.2663 0.266
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1735,13 +1735,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.0865, 0.087,
0.2663 0.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.0865, -0.087,
0.2663 0.266
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1754,13 +1754,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.0865, -0.087,
0.2663 0.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.2265, -0.227,
0.1646 0.165
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1773,8 +1773,8 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.2265, -0.227,
0.1646 0.165
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1797,8 +1797,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.2265, -0.227,
-0.1646 -0.165
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1811,13 +1811,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.2265, -0.227,
-0.1646 -0.165
], ],
"tag": null, "tag": null,
"to": [ "to": [
-0.0865, -0.087,
-0.2663 -0.266
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1830,13 +1830,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-0.0865, -0.087,
-0.2663 -0.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0865, 0.087,
-0.2663 -0.266
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1849,13 +1849,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.0865, 0.087,
-0.2663 -0.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.2265, 0.227,
-0.1646 -0.165
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1868,8 +1868,8 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.2265, 0.227,
-0.1646 -0.165
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1962,7 +1962,7 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.5725, 0.573,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1977,16 +1977,16 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.5725, 0.573,
0.05 0.05
], ],
"from": [ "from": [
0.5725, 0.573,
0.0 0.0
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.6225, 0.623,
0.05 0.05
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -2001,17 +2001,17 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-127.8681, -127.868,
0.05 0.05
], ],
"from": [ "from": [
0.6225, 0.623,
0.05 0.05
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.38, 0.38,
7.9404 7.94
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -2025,12 +2025,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
59.7449, 59.745,
11.5929 11.593
], ],
"from": [ "from": [
0.38, 0.38,
7.9404 7.94
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2322,7 +2322,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.8929, 0.893,
11.36 11.36
], ],
"from": [ "from": [
@ -2346,8 +2346,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
0.5706, 0.571,
8.1992 8.199
], ],
"from": [ "from": [
0.95, 0.95,
@ -2380,8 +2380,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.8349, 2.835,
11.4237 11.424
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2394,13 +2394,13 @@ description: Variables in memory after executing hammer.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.8349, 2.835,
11.4237 11.424
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.4819, 2.482,
11.7777 11.778
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2414,12 +2414,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-0.1327, -0.133,
9.1702 9.17
], ],
"from": [ "from": [
2.4819, 2.482,
11.7777 11.778
], ],
"tag": { "tag": {
"commentStart": 617, "commentStart": 617,
@ -2444,8 +2444,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1784, -1.178,
14.0265 14.026
], ],
"from": [ "from": [
-0.91, -0.91,
@ -2589,8 +2589,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.5779, -1.578,
11.6641 11.664
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2604,12 +2604,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-1.1869, -1.187,
10.7428 10.743
], ],
"from": [ "from": [
-1.5779, -1.578,
11.6641 11.664
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2846,7 +2846,7 @@ description: Variables in memory after executing hammer.kcl
"tag": null, "tag": null,
"to": [ "to": [
-1.97, -1.97,
-0.5625 -0.563
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2861,17 +2861,17 @@ description: Variables in memory after executing hammer.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
-1.92, -1.92,
-0.5625 -0.563
], ],
"from": [ "from": [
-1.97, -1.97,
-0.5625 -0.563
], ],
"radius": 0.05, "radius": 0.05,
"tag": null, "tag": null,
"to": [ "to": [
-1.92, -1.92,
-0.6125 -0.613
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -2885,12 +2885,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"from": [ "from": [
-1.92, -1.92,
-0.6125 -0.613
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.67, -1.67,
-0.6125 -0.613
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2904,7 +2904,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"from": [ "from": [
-1.67, -1.67,
-0.6125 -0.613
], ],
"p1": [ "p1": [
-1.67, -1.67,
@ -2921,7 +2921,7 @@ description: Variables in memory after executing hammer.kcl
"tag": null, "tag": null,
"to": [ "to": [
-0.91, -0.91,
-0.6125 -0.613
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
"units": { "units": {
@ -2935,12 +2935,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
2.4855, 2.485,
9.0824 9.082
], ],
"from": [ "from": [
-0.91, -0.91,
-0.6125 -0.613
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3131,8 +3131,8 @@ description: Variables in memory after executing hammer.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
3.2901, 3.29,
-0.5548 -0.555
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3146,12 +3146,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
3.7863, 3.786,
8.913 8.913
], ],
"from": [ "from": [
3.2901, 3.29,
-0.5548 -0.555
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3170,7 +3170,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
1.9368, 1.937,
0.0 0.0
], ],
"from": [ "from": [
@ -3194,8 +3194,8 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
3.7945, 3.794,
-8.9522 -8.952
], ],
"from": [ "from": [
1.86, 1.86,
@ -3386,7 +3386,7 @@ description: Variables in memory after executing hammer.kcl
"tag": null, "tag": null,
"to": [ "to": [
-1.97, -1.97,
0.5625 0.563
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3401,17 +3401,17 @@ description: Variables in memory after executing hammer.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
-1.92, -1.92,
0.5625 0.563
], ],
"from": [ "from": [
-1.97, -1.97,
0.5625 0.563
], ],
"radius": 0.05, "radius": 0.05,
"tag": null, "tag": null,
"to": [ "to": [
-1.92, -1.92,
0.6125 0.613
], ],
"type": "Arc", "type": "Arc",
"units": { "units": {
@ -3425,12 +3425,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"from": [ "from": [
-1.92, -1.92,
0.6125 0.613
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.67, -1.67,
0.6125 0.613
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3444,7 +3444,7 @@ description: Variables in memory after executing hammer.kcl
}, },
"from": [ "from": [
-1.67, -1.67,
0.6125 0.613
], ],
"p1": [ "p1": [
-1.67, -1.67,
@ -3461,7 +3461,7 @@ description: Variables in memory after executing hammer.kcl
"tag": null, "tag": null,
"to": [ "to": [
-0.91, -0.91,
0.6125 0.613
], ],
"type": "ArcThreePoint", "type": "ArcThreePoint",
"units": { "units": {
@ -3475,12 +3475,12 @@ description: Variables in memory after executing hammer.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
2.4855, 2.485,
-9.0824 -9.082
], ],
"from": [ "from": [
-0.91, -0.91,
0.6125 0.613
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -77,7 +77,7 @@ description: Artifact commands helical-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.3541, "x": 3.354,
"y": 1.0, "y": 1.0,
"z": 0.0 "z": 0.0
} }
@ -163,7 +163,7 @@ description: Artifact commands helical-gear.kcl
"radius": 3.5, "radius": 3.5,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 343.3985 "value": 343.398
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
@ -192,7 +192,7 @@ description: Artifact commands helical-gear.kcl
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
"value": 16.6015 "value": 16.602
}, },
"relative": false "relative": false
} }
@ -379,7 +379,7 @@ description: Artifact commands helical-gear.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 19.7335, "y": 19.734,
"z": 0.0 "z": 0.0
} }
} }
@ -391,8 +391,8 @@ description: Artifact commands helical-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 2.1027, "x": 2.103,
"y": 19.6212, "y": 19.621,
"z": 0.0 "z": 0.0
} }
} }
@ -404,8 +404,8 @@ description: Artifact commands helical-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 4.2053, "x": 4.205,
"y": 19.2802, "y": 19.28,
"z": 0.0 "z": 0.0
} }
} }
@ -509,7 +509,7 @@ description: Artifact commands helical-gear.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 83.8833 "value": 83.883
}, },
"reverse": false "reverse": false
} }
@ -527,7 +527,7 @@ description: Artifact commands helical-gear.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 77.6955 "value": 77.696
}, },
"reverse": false "reverse": false
} }
@ -542,8 +542,8 @@ description: Artifact commands helical-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.0495, "x": -3.049,
"y": 22.7969, "y": 22.797,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -560,7 +560,7 @@ description: Artifact commands helical-gear.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -0.603, "x": -0.603,
"y": 22.9921, "y": 22.992,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -576,8 +576,8 @@ description: Artifact commands helical-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.8788, "x": 1.879,
"y": 22.9231, "y": 22.923,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -596,7 +596,7 @@ description: Artifact commands helical-gear.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 616.4232 "value": 616.423
}, },
"reverse": true "reverse": true
} }
@ -614,7 +614,7 @@ description: Artifact commands helical-gear.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -97.4601 "value": -97.46
}, },
"reverse": true "reverse": true
} }
@ -632,7 +632,7 @@ description: Artifact commands helical-gear.kcl
"end_radius": 23.0, "end_radius": 23.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -91.2723 "value": -91.272
}, },
"reverse": true "reverse": true
} }
@ -647,8 +647,8 @@ description: Artifact commands helical-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.8166, "x": -5.817,
"y": 18.8568, "y": 18.857,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -664,8 +664,8 @@ description: Artifact commands helical-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.7742, "x": -3.774,
"y": 19.3693, "y": 19.369,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -681,8 +681,8 @@ description: Artifact commands helical-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.6644, "x": -1.664,
"y": 19.6632, "y": 19.663,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -156,7 +156,7 @@ description: Operations executed helical-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -168,7 +168,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -208,7 +208,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -248,7 +248,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -276,7 +276,7 @@ description: Operations executed helical-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7038, "value": 1.704,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -408,7 +408,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -436,7 +436,7 @@ description: Operations executed helical-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7632, "value": 1.763,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -448,7 +448,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -476,7 +476,7 @@ description: Operations executed helical-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6552, "value": 1.655,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -488,7 +488,7 @@ description: Operations executed helical-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 19.7335, "value": 19.734,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -118,7 +118,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.4641, "x": 3.464,
"y": 0.5, "y": 0.5,
"z": 0.0 "z": 0.0
} }
@ -131,7 +131,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.4641, "x": 3.464,
"y": 0.5, "y": 0.5,
"z": 0.0 "z": 0.0
} }
@ -282,7 +282,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"radius": 3.5, "radius": 3.5,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 351.7868 "value": 351.787
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
@ -307,7 +307,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"radius": 3.5, "radius": 3.5,
"start": { "start": {
"unit": "degrees", "unit": "degrees",
"value": 351.7868 "value": 351.787
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
@ -336,7 +336,7 @@ description: Artifact commands helical-planetary-gearset.kcl
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
"value": 8.2132 "value": 8.213
}, },
"relative": false "relative": false
} }
@ -361,7 +361,7 @@ description: Artifact commands helical-planetary-gearset.kcl
}, },
"end": { "end": {
"unit": "degrees", "unit": "degrees",
"value": 8.2132 "value": 8.213
}, },
"relative": false "relative": false
} }
@ -721,7 +721,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 8.7327, "y": 8.733,
"z": 0.0 "z": 0.0
} }
} }
@ -733,8 +733,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.9695, "x": 0.97,
"y": 8.6787, "y": 8.679,
"z": 0.0 "z": 0.0
} }
} }
@ -746,8 +746,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 1.9391, "x": 1.939,
"y": 8.5147, "y": 8.515,
"z": 0.0 "z": 0.0
} }
} }
@ -760,7 +760,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 8.7327, "y": 8.733,
"z": 0.0 "z": 0.0
} }
} }
@ -772,8 +772,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -0.9695, "x": -0.97,
"y": 8.6787, "y": 8.679,
"z": 0.0 "z": 0.0
} }
} }
@ -785,8 +785,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -1.9391, "x": -1.939,
"y": 8.5147, "y": 8.515,
"z": 0.0 "z": 0.0
} }
} }
@ -959,7 +959,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 83.6256 "value": 83.626
}, },
"reverse": false "reverse": false
} }
@ -977,7 +977,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 77.1705 "value": 77.17
}, },
"reverse": false "reverse": false
} }
@ -1013,7 +1013,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 96.3744 "value": 96.374
}, },
"reverse": false "reverse": false
} }
@ -1031,7 +1031,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 102.8295 "value": 102.83
}, },
"reverse": false "reverse": false
} }
@ -1046,7 +1046,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.4215, "x": -2.421,
"y": 10.217, "y": 10.217,
"z": 0.0 "z": 0.0
}, },
@ -1063,8 +1063,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.2722, "x": -1.272,
"y": 10.4227, "y": 10.423,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1080,8 +1080,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0923, "x": -0.092,
"y": 10.4996, "y": 10.5,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1097,7 +1097,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.4215, "x": -2.421,
"y": 10.217, "y": 10.217,
"z": 0.0 "z": 0.0
}, },
@ -1114,7 +1114,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.5408, "x": -3.541,
"y": 9.885, "y": 9.885,
"z": 0.0 "z": 0.0
}, },
@ -1131,8 +1131,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.6297, "x": -4.63,
"y": 9.4242, "y": 9.424,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1151,7 +1151,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 611.9038 "value": 611.904
}, },
"reverse": true "reverse": true
} }
@ -1169,7 +1169,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -101.7217 "value": -101.722
}, },
"reverse": true "reverse": true
} }
@ -1187,7 +1187,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -95.2666 "value": -95.267
}, },
"reverse": true "reverse": true
} }
@ -1205,7 +1205,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 611.9038 "value": 611.904
}, },
"reverse": true "reverse": true
} }
@ -1223,7 +1223,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 605.5294 "value": 605.529
}, },
"reverse": true "reverse": true
} }
@ -1241,7 +1241,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 10.5, "end_radius": 10.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 599.0743 "value": 599.074
}, },
"reverse": true "reverse": true
} }
@ -1256,8 +1256,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.3663, "x": -4.366,
"y": 7.5627, "y": 7.563,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1273,8 +1273,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.4997, "x": -3.5,
"y": 8.0007, "y": 8.001,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1291,7 +1291,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -2.578, "x": -2.578,
"y": 8.3435, "y": 8.343,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1307,8 +1307,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.3663, "x": -4.366,
"y": 7.5627, "y": 7.563,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1325,7 +1325,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -5.179, "x": -5.179,
"y": 7.0312, "y": 7.031,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1341,8 +1341,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.9366, "x": -5.937,
"y": 6.4044, "y": 6.404,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1888,7 +1888,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 30.5643, "y": 30.564,
"z": 0.0 "z": 0.0
} }
} }
@ -1900,8 +1900,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -1.0797, "x": -1.08,
"y": 30.5452, "y": 30.545,
"z": 0.0 "z": 0.0
} }
} }
@ -1913,8 +1913,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -2.1595, "x": -2.159,
"y": 30.4879, "y": 30.488,
"z": 0.0 "z": 0.0
} }
} }
@ -2018,7 +2018,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 33.0, "end_radius": 33.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 92.0245 "value": 92.024
}, },
"reverse": false "reverse": false
} }
@ -2036,7 +2036,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 33.0, "end_radius": 33.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 94.0515 "value": 94.051
}, },
"reverse": false "reverse": false
} }
@ -2051,8 +2051,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.7395, "x": -2.74,
"y": 32.8861, "y": 32.886,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2068,8 +2068,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.8995, "x": -3.9,
"y": 32.7688, "y": 32.769,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2085,8 +2085,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.0561, "x": -5.056,
"y": 32.6104, "y": 32.61,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2105,7 +2105,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"end_radius": 33.0, "end_radius": 33.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 625.3045 "value": 625.304
}, },
"reverse": true "reverse": true
} }
@ -2156,8 +2156,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.5554, "x": -4.555,
"y": 30.2229, "y": 30.223,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2173,8 +2173,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.6202, "x": -5.62,
"y": 30.0431, "y": 30.043,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2190,8 +2190,8 @@ description: Artifact commands helical-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -6.6793, "x": -6.679,
"y": 29.8256, "y": 29.826,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2556,7 +2556,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 35.6757, "x": 35.676,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2569,7 +2569,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 35.6757, "x": 35.676,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2582,7 +2582,7 @@ description: Artifact commands helical-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 35.6757, "x": 35.676,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -298,7 +298,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -310,7 +310,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -338,7 +338,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.4595, "value": 1.46,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -350,7 +350,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -378,7 +378,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.3469, "value": 1.347,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -390,7 +390,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -418,7 +418,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -430,7 +430,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -458,7 +458,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6821, "value": 1.682,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -470,7 +470,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -498,7 +498,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7947, "value": 1.795,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -510,7 +510,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -538,7 +538,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.8035, "value": 1.804,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -578,7 +578,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6923, "value": 1.692,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -618,7 +618,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5796, "value": 1.58,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -658,7 +658,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.8035, "value": 1.804,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -698,7 +698,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.9148, "value": 1.915,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -738,7 +738,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.0274, "value": 2.027,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -778,7 +778,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.0944, "value": 2.094,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -790,7 +790,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -818,7 +818,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.9831, "value": 1.983,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -830,7 +830,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -858,7 +858,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.8705, "value": 1.87,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -870,7 +870,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -898,7 +898,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.0944, "value": 2.094,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -910,7 +910,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -938,7 +938,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.2057, "value": 2.206,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -950,7 +950,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -978,7 +978,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.3183, "value": 2.318,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -990,7 +990,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 8.7327, "value": 8.733,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1529,7 +1529,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1541,7 +1541,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1569,7 +1569,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6061, "value": 1.606,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1581,7 +1581,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1609,7 +1609,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6415, "value": 1.642,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1621,7 +1621,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1649,7 +1649,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6539, "value": 1.654,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1689,7 +1689,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6892, "value": 1.689,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1729,7 +1729,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7246, "value": 1.725,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1769,7 +1769,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7204, "value": 1.72,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1781,7 +1781,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1809,7 +1809,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7557, "value": 1.756,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1821,7 +1821,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1849,7 +1849,7 @@ description: Operations executed helical-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7911, "value": 1.791,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1861,7 +1861,7 @@ description: Operations executed helical-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 30.5643, "value": 30.564,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -253,7 +253,7 @@ description: Artifact commands helium-tank.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0254, "x": 0.025,
"y": -12.7, "y": -12.7,
"z": 0.0 "z": 0.0
}, },
@ -287,7 +287,7 @@ description: Artifact commands helium-tank.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 63.4746, "x": 63.475,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -321,7 +321,7 @@ description: Artifact commands helium-tank.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 590.4528, "y": 590.453,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -354,7 +354,7 @@ description: Artifact commands helium-tank.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 13.335, "x": 13.335,
"y": 706.6578, "y": 706.658,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -549,7 +549,7 @@ description: Artifact commands helium-tank.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 16.7105, "x": 16.711,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -748,7 +748,7 @@ description: Artifact commands helium-tank.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 10.5833, "x": 10.583,
"y": 769.62, "y": 769.62,
"z": 0.0 "z": 0.0
} }
@ -842,7 +842,7 @@ description: Artifact commands helium-tank.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 9.7692, "x": 9.769,
"y": 769.62, "y": 769.62,
"z": 0.0 "z": 0.0
} }
@ -1100,7 +1100,7 @@ description: Artifact commands helium-tank.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 5.6709, "x": 5.671,
"y": 32.161, "y": 32.161,
"z": 0.0 "z": 0.0
}, },
@ -1134,7 +1134,7 @@ description: Artifact commands helium-tank.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 134.1667, "y": 134.167,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1326,7 +1326,7 @@ description: Artifact commands helium-tank.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 5.6709, "x": 5.671,
"y": 32.161, "y": 32.161,
"z": 0.0 "z": 0.0
}, },
@ -1360,7 +1360,7 @@ description: Artifact commands helium-tank.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 137.3417, "y": 137.342,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1554,7 +1554,7 @@ description: Artifact commands helium-tank.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.0, "x": 0.0,
"y": 1.5875 "y": 1.588
}, },
"radius": 120.64999999999999, "radius": 120.64999999999999,
"start": { "start": {
@ -1577,7 +1577,7 @@ description: Artifact commands helium-tank.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 120.65, "x": 120.65,
"y": 1.5875, "y": 1.588,
"z": 0.0 "z": 0.0
} }
} }
@ -1657,7 +1657,7 @@ description: Artifact commands helium-tank.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.0, "x": 0.0,
"y": 1.5875 "y": 1.588
}, },
"radius": 118.11, "radius": 118.11,
"start": { "start": {
@ -1680,7 +1680,7 @@ description: Artifact commands helium-tank.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 118.11, "x": 118.11,
"y": 1.5875, "y": 1.588,
"z": 0.0 "z": 0.0
} }
} }
@ -1789,7 +1789,7 @@ description: Artifact commands helium-tank.kcl
"type": "make_plane", "type": "make_plane",
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 120.3158, "y": 120.316,
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
@ -2122,7 +2122,7 @@ description: Artifact commands helium-tank.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.0, "x": 0.0,
"y": 1.9685 "y": 1.969
}, },
"radius": 120.31578947368422, "radius": 120.31578947368422,
"start": { "start": {
@ -2144,8 +2144,8 @@ description: Artifact commands helium-tank.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 120.3158, "x": 120.316,
"y": 1.9685, "y": 1.969,
"z": 0.0 "z": 0.0
} }
} }
@ -2225,7 +2225,7 @@ description: Artifact commands helium-tank.kcl
"type": "arc", "type": "arc",
"center": { "center": {
"x": 0.0, "x": 0.0,
"y": 1.9685 "y": 1.969
}, },
"radius": 117.77578947368423, "radius": 117.77578947368423,
"start": { "start": {
@ -2247,8 +2247,8 @@ description: Artifact commands helium-tank.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 117.7758, "x": 117.776,
"y": 1.9685, "y": 1.969,
"z": 0.0 "z": 0.0
} }
} }

View File

@ -150,7 +150,7 @@ description: Operations executed helium-tank.kcl
"offset": { "offset": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.4583, "value": 2.458,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Length", "type": "Length",
@ -648,7 +648,7 @@ description: Operations executed helium-tank.kcl
"offset": { "offset": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -4.7368, "value": -4.737,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -62,8 +62,8 @@ description: Variables in memory after executing helium-tank.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.6811, -2.681,
3.6862 3.686
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -77,12 +77,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.8245, -2.824,
3.891 3.891
], ],
"from": [ "from": [
-2.6811, -2.681,
3.6862 3.686
], ],
"tag": { "tag": {
"commentStart": 3388, "commentStart": 3388,
@ -92,8 +92,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-3.0707, -3.071,
3.9344 3.934
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -106,13 +106,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-3.0707, -3.071,
3.9344 3.934
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.8474, -2.847,
5.2006 5.201
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -126,12 +126,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.6012, -2.601,
5.1572 5.157
], ],
"from": [ "from": [
-2.8474, -2.847,
5.2006 5.201
], ],
"tag": { "tag": {
"commentStart": 3521, "commentStart": 3521,
@ -141,8 +141,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg05" "value": "seg05"
}, },
"to": [ "to": [
-2.6012, -2.601,
5.4072 5.407
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -155,13 +155,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.6012, -2.601,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
5.4072 5.407
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -175,7 +175,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.0, 0.0,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -302,8 +302,8 @@ description: Variables in memory after executing helium-tank.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.7528, -2.753,
3.7886 3.789
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -317,12 +317,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.8245, -2.824,
3.891 3.891
], ],
"from": [ "from": [
-2.7528, -2.753,
3.7886 3.789
], ],
"tag": { "tag": {
"commentStart": 2738, "commentStart": 2738,
@ -332,8 +332,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg06" "value": "seg06"
}, },
"to": [ "to": [
-2.9476, -2.948,
3.9127 3.913
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -346,13 +346,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.9476, -2.948,
3.9127 3.913
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.7243, -2.724,
5.1789 5.179
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -366,12 +366,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.6012, -2.601,
5.1572 5.157
], ],
"from": [ "from": [
-2.7243, -2.724,
5.1789 5.179
], ],
"tag": { "tag": {
"commentStart": 2887, "commentStart": 2887,
@ -381,8 +381,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg07" "value": "seg07"
}, },
"to": [ "to": [
-2.6012, -2.601,
5.2822 5.282
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -395,13 +395,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.6012, -2.601,
5.2822 5.282
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
5.2822 5.282
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -415,7 +415,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.0, 0.0,
5.2822 5.282
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -539,8 +539,8 @@ description: Variables in memory after executing helium-tank.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.6811, -2.681,
3.6862 3.686
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -554,12 +554,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.8245, -2.824,
3.891 3.891
], ],
"from": [ "from": [
-2.6811, -2.681,
3.6862 3.686
], ],
"tag": { "tag": {
"commentStart": 3388, "commentStart": 3388,
@ -569,8 +569,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-3.0707, -3.071,
3.9344 3.934
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -583,13 +583,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-3.0707, -3.071,
3.9344 3.934
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.8474, -2.847,
5.2006 5.201
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -603,12 +603,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.6012, -2.601,
5.1572 5.157
], ],
"from": [ "from": [
-2.8474, -2.847,
5.2006 5.201
], ],
"tag": { "tag": {
"commentStart": 3521, "commentStart": 3521,
@ -618,8 +618,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg05" "value": "seg05"
}, },
"to": [ "to": [
-2.6012, -2.601,
5.4072 5.407
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -632,13 +632,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.6012, -2.601,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
5.4072 5.407
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -652,7 +652,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.0, 0.0,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -784,8 +784,8 @@ description: Variables in memory after executing helium-tank.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.6811, -2.681,
3.6862 3.686
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -799,12 +799,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.8245, -2.824,
3.891 3.891
], ],
"from": [ "from": [
-2.6811, -2.681,
3.6862 3.686
], ],
"tag": { "tag": {
"commentStart": 3388, "commentStart": 3388,
@ -814,8 +814,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg04" "value": "seg04"
}, },
"to": [ "to": [
-3.0707, -3.071,
3.9344 3.934
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -828,13 +828,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-3.0707, -3.071,
3.9344 3.934
], ],
"tag": null, "tag": null,
"to": [ "to": [
-2.8474, -2.847,
5.2006 5.201
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -848,12 +848,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-2.6012, -2.601,
5.1572 5.157
], ],
"from": [ "from": [
-2.8474, -2.847,
5.2006 5.201
], ],
"tag": { "tag": {
"commentStart": 3521, "commentStart": 3521,
@ -863,8 +863,8 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg05" "value": "seg05"
}, },
"to": [ "to": [
-2.6012, -2.601,
5.4072 5.407
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -877,13 +877,13 @@ description: Variables in memory after executing helium-tank.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-2.6012, -2.601,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
5.4072 5.407
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -897,7 +897,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.0, 0.0,
5.4072 5.407
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1027,17 +1027,17 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.1667, 0.167,
1.675 1.675
], ],
"from": [ "from": [
0.1771, 0.177,
1.675 1.675
], ],
"radius": 0.010416666666666666, "radius": 0.010416666666666666,
"tag": null, "tag": null,
"to": [ "to": [
0.1771, 0.177,
1.675 1.675
], ],
"type": "Circle", "type": "Circle",
@ -1136,17 +1136,17 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
0.0, 0.0,
0.0775 0.078
], ],
"from": [ "from": [
4.7368, 4.737,
0.0775 0.078
], ],
"radius": 4.736842105263158, "radius": 4.736842105263158,
"tag": null, "tag": null,
"to": [ "to": [
4.7368, 4.737,
0.0775 0.078
], ],
"type": "Circle", "type": "Circle",
"units": { "units": {
@ -1186,12 +1186,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"start": { "start": {
"from": [ "from": [
4.7368, 4.737,
0.0775 0.078
], ],
"to": [ "to": [
4.7368, 4.737,
0.0775 0.078
], ],
"units": { "units": {
"type": "Inches" "type": "Inches"
@ -1302,17 +1302,17 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
0.0, 0.0,
0.0625 0.063
], ],
"from": [ "from": [
4.75, 4.75,
0.0625 0.063
], ],
"radius": 4.75, "radius": 4.75,
"tag": null, "tag": null,
"to": [ "to": [
4.75, 4.75,
0.0625 0.063
], ],
"type": "Circle", "type": "Circle",
"units": { "units": {
@ -1353,11 +1353,11 @@ description: Variables in memory after executing helium-tank.kcl
"start": { "start": {
"from": [ "from": [
4.75, 4.75,
0.0625 0.063
], ],
"to": [ "to": [
4.75, 4.75,
0.0625 0.063
], ],
"units": { "units": {
"type": "Inches" "type": "Inches"
@ -1622,7 +1622,7 @@ description: Variables in memory after executing helium-tank.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.819, 0.819,
29.2658 29.266
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1636,17 +1636,17 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
1.3828, 1.383,
29.0606 29.061
], ],
"from": [ "from": [
0.819, 0.819,
29.2658 29.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.819, 0.819,
28.8554 28.855
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1661,16 +1661,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.725, 0.725,
28.8212 28.821
], ],
"from": [ "from": [
0.819, 0.819,
28.8554 28.855
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.725, 0.725,
28.7212 28.721
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1685,16 +1685,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
0.725, 0.725,
28.6212 28.621
], ],
"from": [ "from": [
0.725, 0.725,
28.7212 28.721
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.725, 0.725,
28.5212 28.521
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1709,11 +1709,11 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.725, 0.725,
24.7462 24.746
], ],
"from": [ "from": [
0.725, 0.725,
28.5212 28.521
], ],
"tag": { "tag": {
"commentStart": 843, "commentStart": 843,
@ -1724,7 +1724,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"to": [ "to": [
4.5, 4.5,
24.7462 24.746
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1738,7 +1738,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
4.5, 4.5,
24.7462 24.746
], ],
"tag": { "tag": {
"commentStart": 922, "commentStart": 922,
@ -1885,7 +1885,7 @@ description: Variables in memory after executing helium-tank.kcl
"tag": null, "tag": null,
"to": [ "to": [
4.375, 4.375,
24.7462 24.746
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1900,16 +1900,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
1.3, 1.3,
24.7462 24.746
], ],
"from": [ "from": [
4.375, 4.375,
24.7462 24.746
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3, 1.3,
27.8212 27.821
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1923,12 +1923,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
1.3, 1.3,
27.8212 27.821
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.525, 0.525,
27.8212 27.821
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1942,7 +1942,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.525, 0.525,
27.8212 27.821
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2135,7 +2135,7 @@ description: Variables in memory after executing helium-tank.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.819, 0.819,
29.2658 29.266
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2149,17 +2149,17 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
1.3828, 1.383,
29.0606 29.061
], ],
"from": [ "from": [
0.819, 0.819,
29.2658 29.266
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.819, 0.819,
28.8554 28.855
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2174,16 +2174,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.725, 0.725,
28.8212 28.821
], ],
"from": [ "from": [
0.819, 0.819,
28.8554 28.855
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.725, 0.725,
28.7212 28.721
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2198,16 +2198,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
0.725, 0.725,
28.6212 28.621
], ],
"from": [ "from": [
0.725, 0.725,
28.7212 28.721
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.725, 0.725,
28.5212 28.521
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2222,11 +2222,11 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.725, 0.725,
24.7462 24.746
], ],
"from": [ "from": [
0.725, 0.725,
28.5212 28.521
], ],
"tag": { "tag": {
"commentStart": 843, "commentStart": 843,
@ -2237,7 +2237,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"to": [ "to": [
4.5, 4.5,
24.7462 24.746
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2251,7 +2251,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
4.5, 4.5,
24.7462 24.746
], ],
"tag": { "tag": {
"commentStart": 922, "commentStart": 922,
@ -2398,7 +2398,7 @@ description: Variables in memory after executing helium-tank.kcl
"tag": null, "tag": null,
"to": [ "to": [
4.375, 4.375,
24.7462 24.746
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2413,16 +2413,16 @@ description: Variables in memory after executing helium-tank.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
1.3, 1.3,
24.7462 24.746
], ],
"from": [ "from": [
4.375, 4.375,
24.7462 24.746
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3, 1.3,
27.8212 27.821
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2436,12 +2436,12 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
1.3, 1.3,
27.8212 27.821
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.525, 0.525,
27.8212 27.821
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2455,7 +2455,7 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"from": [ "from": [
0.525, 0.525,
27.8212 27.821
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2628,7 +2628,7 @@ description: Variables in memory after executing helium-tank.kcl
0.0 0.0
], ],
"from": [ "from": [
0.6579, 0.658,
0.0 0.0
], ],
"radius": 0.6578947368421053, "radius": 0.6578947368421053,
@ -2640,7 +2640,7 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
0.6579, 0.658,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -2681,11 +2681,11 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.6579, 0.658,
0.0 0.0
], ],
"to": [ "to": [
0.6579, 0.658,
0.0 0.0
], ],
"units": { "units": {
@ -2791,7 +2791,7 @@ description: Variables in memory after executing helium-tank.kcl
0.0 0.0
], ],
"from": [ "from": [
0.6579, 0.658,
0.0 0.0
], ],
"radius": 0.6578947368421053, "radius": 0.6578947368421053,
@ -2803,7 +2803,7 @@ description: Variables in memory after executing helium-tank.kcl
"value": "seg03" "value": "seg03"
}, },
"to": [ "to": [
0.6579, 0.658,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -2844,11 +2844,11 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.6579, 0.658,
0.0 0.0
], ],
"to": [ "to": [
0.6579, 0.658,
0.0 0.0
], ],
"units": { "units": {
@ -2935,13 +2935,13 @@ description: Variables in memory after executing helium-tank.kcl
2.525 2.525
], ],
"from": [ "from": [
0.0347, 0.035,
2.525 2.525
], ],
"radius": 0.034722222222222224, "radius": 0.034722222222222224,
"tag": null, "tag": null,
"to": [ "to": [
0.0347, 0.035,
2.525 2.525
], ],
"type": "Circle", "type": "Circle",
@ -2982,11 +2982,11 @@ description: Variables in memory after executing helium-tank.kcl
}, },
"start": { "start": {
"from": [ "from": [
0.4167, 0.417,
30.3 30.3
], ],
"to": [ "to": [
0.4167, 0.417,
30.3 30.3
], ],
"units": { "units": {

View File

@ -147,7 +147,7 @@ description: Artifact commands herringbone-gear.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 12.1287, "y": 12.129,
"z": 0.0 "z": 0.0
} }
} }
@ -159,8 +159,8 @@ description: Artifact commands herringbone-gear.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.0155, "x": 3.015,
"y": 11.7479, "y": 11.748,
"z": 0.0 "z": 0.0
} }
} }
@ -256,8 +256,8 @@ description: Artifact commands herringbone-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.5048, "x": -1.505,
"y": 13.4159, "y": 13.416,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -273,8 +273,8 @@ description: Artifact commands herringbone-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.8779, "x": 1.878,
"y": 13.3688, "y": 13.369,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -293,7 +293,7 @@ description: Artifact commands herringbone-gear.kcl
"end_radius": 13.5, "end_radius": 13.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 622.1736 "value": 622.174
}, },
"reverse": true "reverse": true
} }
@ -311,7 +311,7 @@ description: Artifact commands herringbone-gear.kcl
"end_radius": 13.5, "end_radius": 13.5,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -83.4304 "value": -83.43
}, },
"reverse": true "reverse": true
} }
@ -326,8 +326,8 @@ description: Artifact commands herringbone-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.0163, "x": -3.016,
"y": 11.7477, "y": 11.748,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -343,8 +343,8 @@ description: Artifact commands herringbone-gear.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0008, "x": -0.001,
"y": 12.1287, "y": 12.129,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -100,7 +100,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -112,7 +112,7 @@ description: Operations executed herringbone-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 12.1287, "value": 12.129,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -140,7 +140,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.3195, "value": 1.32,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -152,7 +152,7 @@ description: Operations executed herringbone-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 12.1287, "value": 12.129,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -180,7 +180,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6825, "value": 1.682,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -220,7 +220,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.4312, "value": 1.431,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -260,7 +260,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.8221, "value": 1.822,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -272,7 +272,7 @@ description: Operations executed herringbone-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 12.1287, "value": 12.129,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -300,7 +300,7 @@ description: Operations executed herringbone-gear.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5709, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -312,7 +312,7 @@ description: Operations executed herringbone-gear.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 12.1287, "value": 12.129,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -269,8 +269,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 2.4459, "x": 2.446,
"y": 12.8686, "y": 12.869,
"z": 0.0 "z": 0.0
} }
} }
@ -295,8 +295,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -2.4459, "x": -2.446,
"y": 12.8686, "y": 12.869,
"z": 0.0 "z": 0.0
} }
} }
@ -423,7 +423,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 79.2385 "value": 79.238
}, },
"reverse": false "reverse": false
} }
@ -459,7 +459,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 100.7615 "value": 100.762
}, },
"reverse": false "reverse": false
} }
@ -474,8 +474,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.3178, "x": -2.318,
"y": 14.8198, "y": 14.82,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -491,7 +491,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 0.4902, "x": 0.49,
"y": 14.992, "y": 14.992,
"z": 0.0 "z": 0.0
}, },
@ -508,8 +508,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.3178, "x": -2.318,
"y": 14.8198, "y": 14.82,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -525,8 +525,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.0442, "x": -5.044,
"y": 14.1264, "y": 14.126,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -545,7 +545,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 618.7643 "value": 618.764
}, },
"reverse": true "reverse": true
} }
@ -563,7 +563,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": -90.4741 "value": -90.474
}, },
"reverse": true "reverse": true
} }
@ -581,7 +581,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 618.7643 "value": 618.764
}, },
"reverse": true "reverse": true
} }
@ -599,7 +599,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 15.0, "end_radius": 15.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 608.0028 "value": 608.003
}, },
"reverse": true "reverse": true
} }
@ -614,7 +614,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.4801, "x": -4.48,
"y": 12.309, "y": 12.309,
"z": 0.0 "z": 0.0
}, },
@ -632,7 +632,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -2.103, "x": -2.103,
"y": 12.9291, "y": 12.929,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -648,7 +648,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.4801, "x": -4.48,
"y": 12.309, "y": 12.309,
"z": 0.0 "z": 0.0
}, },
@ -665,7 +665,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -6.6997, "x": -6.7,
"y": 11.256, "y": 11.256,
"z": 0.0 "z": 0.0
}, },
@ -1499,7 +1499,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 42.2079, "y": 42.208,
"z": 0.0 "z": 0.0
} }
} }
@ -1593,7 +1593,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 45.0, "end_radius": 45.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 93.5684 "value": 93.568
}, },
"reverse": false "reverse": false
} }
@ -1608,8 +1608,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.9769, "x": -2.977,
"y": 44.9014, "y": 44.901,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1625,8 +1625,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.7658, "x": -5.766,
"y": 44.6291, "y": 44.629,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1645,7 +1645,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 45.0, "end_radius": 45.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 626.4283 "value": 626.428
}, },
"reverse": true "reverse": true
} }
@ -1663,7 +1663,7 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"end_radius": 45.0, "end_radius": 45.0,
"angle": { "angle": {
"unit": "degrees", "unit": "degrees",
"value": 622.8599 "value": 622.86
}, },
"reverse": true "reverse": true
} }
@ -1678,8 +1678,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -4.5635, "x": -4.563,
"y": 41.9604, "y": 41.96,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1695,8 +1695,8 @@ description: Artifact commands herringbone-planetary-gearset.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -7.1663, "x": -7.166,
"y": 41.5951, "y": 41.595,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -186,7 +186,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -266,7 +266,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -306,7 +306,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7586, "value": 1.759,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -346,7 +346,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7259, "value": 1.726,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -386,7 +386,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5381, "value": 1.538,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -426,7 +426,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7259, "value": 1.726,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -466,7 +466,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.9138, "value": 1.914,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -506,7 +506,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.9199, "value": 1.92,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -586,7 +586,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.9199, "value": 1.92,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -626,7 +626,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 2.1077, "value": 2.108,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1092,7 +1092,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.5708, "value": 1.571,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1104,7 +1104,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 42.2079, "value": 42.208,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1132,7 +1132,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6331, "value": 1.633,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1144,7 +1144,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 42.2079, "value": 42.208,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1212,7 +1212,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6993, "value": 1.699,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1252,7 +1252,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.6791, "value": 1.679,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1264,7 +1264,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 42.2079, "value": 42.208,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1292,7 +1292,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"angle": { "angle": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 1.7414, "value": 1.741,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Angle", "type": "Angle",
@ -1304,7 +1304,7 @@ description: Operations executed herringbone-planetary-gearset.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 42.2079, "value": 42.208,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -77,7 +77,7 @@ description: Artifact commands hex-nut.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 7.9375, "x": 7.938,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -106,8 +106,8 @@ description: Artifact commands hex-nut.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.9688, "x": -3.969,
"y": -6.8741, "y": -6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -123,7 +123,7 @@ description: Artifact commands hex-nut.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -7.9375, "x": -7.938,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -140,8 +140,8 @@ description: Artifact commands hex-nut.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.9687, "x": -3.969,
"y": 6.8741, "y": 6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -157,8 +157,8 @@ description: Artifact commands hex-nut.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 3.9688, "x": 3.969,
"y": 6.8741, "y": 6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -174,7 +174,7 @@ description: Artifact commands hex-nut.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 7.1438, "x": 7.144,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -264,7 +264,7 @@ description: Artifact commands hex-nut.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 3.9688, "x": 3.969,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -84,7 +84,7 @@ description: Operations executed hex-nut.kcl
"innerDia": { "innerDia": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.3125, "value": 0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -5,7 +5,7 @@ description: Variables in memory after executing hex-nut.kcl
{ {
"diameter": { "diameter": {
"type": "Number", "type": "Number",
"value": 0.3125, "value": 0.313,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -106,7 +106,7 @@ description: Artifact commands i-beam.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 33.8201, "x": 33.82,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -124,7 +124,7 @@ description: Artifact commands i-beam.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -7.4422, "y": -7.442,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -140,8 +140,8 @@ description: Artifact commands i-beam.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 14.0589, "x": 14.059,
"y": 43.3578, "y": 43.358,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -173,7 +173,7 @@ description: Artifact commands i-beam.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 2.4511, "x": 2.451,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },

View File

@ -73,7 +73,7 @@ description: Variables in memory after executing i-beam.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3315, 1.332,
2.0 2.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -87,12 +87,12 @@ description: Variables in memory after executing i-beam.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.3315, 1.332,
2.0 2.0
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.3315, 1.332,
1.707 1.707
], ],
"type": "ToPoint", "type": "ToPoint",
@ -106,12 +106,12 @@ description: Variables in memory after executing i-beam.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.3315, 1.332,
1.707 1.707
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.5535, 0.554,
1.707 1.707
], ],
"type": "ToPoint", "type": "ToPoint",
@ -126,16 +126,16 @@ description: Variables in memory after executing i-beam.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.5535, 0.554,
1.25 1.25
], ],
"from": [ "from": [
0.5535, 0.554,
1.707 1.707
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0965, 0.096,
1.25 1.25
], ],
"type": "TangentialArc", "type": "TangentialArc",
@ -149,12 +149,12 @@ description: Variables in memory after executing i-beam.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
0.0965, 0.096,
1.25 1.25
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.0965, 0.096,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",

View File

@ -124,7 +124,7 @@ description: Artifact commands keyboard.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 148.743, "x": 148.743,
"y": 18.2633, "y": 18.263,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -823,7 +823,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -848,7 +848,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -873,7 +873,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -898,7 +898,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -923,7 +923,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -948,7 +948,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -973,7 +973,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -998,7 +998,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1023,7 +1023,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1048,7 +1048,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1073,7 +1073,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1098,7 +1098,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1123,7 +1123,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1148,7 +1148,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1173,7 +1173,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1198,7 +1198,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1223,7 +1223,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1248,7 +1248,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1273,7 +1273,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1298,7 +1298,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1323,7 +1323,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -1343,7 +1343,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1359,7 +1359,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1375,7 +1375,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1391,7 +1391,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1407,7 +1407,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1423,7 +1423,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1439,7 +1439,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1455,7 +1455,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1471,7 +1471,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1487,7 +1487,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1503,7 +1503,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1519,7 +1519,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1535,7 +1535,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1551,7 +1551,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1567,7 +1567,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1583,7 +1583,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1599,7 +1599,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1615,7 +1615,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1631,7 +1631,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1647,7 +1647,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -1663,7 +1663,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5564,7 +5564,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5580,7 +5580,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5596,7 +5596,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5612,7 +5612,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5628,7 +5628,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5644,7 +5644,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5660,7 +5660,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5676,7 +5676,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5692,7 +5692,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5708,7 +5708,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5724,7 +5724,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5740,7 +5740,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5756,7 +5756,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5772,7 +5772,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5788,7 +5788,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5804,7 +5804,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5820,7 +5820,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5836,7 +5836,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5852,7 +5852,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5868,7 +5868,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -5884,7 +5884,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -8997,7 +8997,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -9017,7 +9017,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9101,7 +9101,7 @@ description: Artifact commands keyboard.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 61.468, "x": 61.468,
"y": 34.6629, "y": 34.663,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -9134,7 +9134,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 6.4008, "x": 6.401,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -9168,7 +9168,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -5.7912, "x": -5.791,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -9185,7 +9185,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 67.8688, "x": 67.869,
"y": 41.549, "y": 41.549,
"z": 0.0 "z": 0.0
}, },
@ -9237,7 +9237,7 @@ description: Artifact commands keyboard.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -1.524, "x": -1.524,
"y": -1.6429, "y": -1.643,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -9254,7 +9254,7 @@ description: Artifact commands keyboard.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 1.6429, "y": 1.643,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -9304,7 +9304,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 64.2242, "x": 64.224,
"y": 40.787, "y": 40.787,
"z": 0.0 "z": 0.0
}, },
@ -9332,7 +9332,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9414,7 +9414,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -9439,7 +9439,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -9459,7 +9459,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9475,7 +9475,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9486,8 +9486,8 @@ description: Artifact commands keyboard.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 229.2401, "x": 229.24,
"y": 87.5894, "y": 87.589,
"z": 0.0 "z": 0.0
} }
} }
@ -9499,8 +9499,8 @@ description: Artifact commands keyboard.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 252.1001, "x": 252.1,
"y": 87.5894, "y": 87.589,
"z": 0.0 "z": 0.0
} }
} }
@ -9560,7 +9560,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 226.0412, "x": 226.041,
"y": 83.321 "y": 83.321
}, },
"radius": 5.3340000000000005, "radius": 5.3340000000000005,
@ -9585,7 +9585,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 248.9012, "x": 248.901,
"y": 83.321 "y": 83.321
}, },
"radius": 5.3340000000000005, "radius": 5.3340000000000005,
@ -9610,8 +9610,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.6583, "x": 1.658,
"y": 1.7877, "y": 1.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -9627,8 +9627,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.6583, "x": 1.658,
"y": 1.7877, "y": 1.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -9644,8 +9644,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 226.0458, "x": 226.046,
"y": 83.3249 "y": 83.325
}, },
"radius": 2.92608, "radius": 2.92608,
"start": { "start": {
@ -9669,8 +9669,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 248.9058, "x": 248.906,
"y": 83.3249 "y": 83.325
}, },
"radius": 2.92608, "radius": 2.92608,
"start": { "start": {
@ -9713,7 +9713,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9729,7 +9729,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9872,7 +9872,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -9897,7 +9897,7 @@ description: Artifact commands keyboard.kcl
}, },
"y_axis": { "y_axis": {
"x": 0.0, "x": 0.0,
"y": 0.9927, "y": 0.993,
"z": 0.121 "z": 0.121
}, },
"size": 60.0, "size": 60.0,
@ -9917,7 +9917,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9933,7 +9933,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -9944,8 +9944,8 @@ description: Artifact commands keyboard.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 222.8596, "x": 222.86,
"y": 79.0346, "y": 79.035,
"z": 0.0 "z": 0.0
} }
} }
@ -9957,8 +9957,8 @@ description: Artifact commands keyboard.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 245.7196, "x": 245.72,
"y": 79.0346, "y": 79.035,
"z": 0.0 "z": 0.0
} }
} }
@ -10018,7 +10018,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 226.0585, "x": 226.059,
"y": 83.303 "y": 83.303
}, },
"radius": 5.3340000000000005, "radius": 5.3340000000000005,
@ -10043,7 +10043,7 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 248.9185, "x": 248.919,
"y": 83.303 "y": 83.303
}, },
"radius": 5.3340000000000005, "radius": 5.3340000000000005,
@ -10068,8 +10068,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.6583, "x": -1.658,
"y": -1.7877, "y": -1.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -10085,8 +10085,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.6583, "x": -1.658,
"y": -1.7877, "y": -1.788,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -10102,8 +10102,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 226.0539, "x": 226.054,
"y": 83.2991 "y": 83.299
}, },
"radius": 2.92608, "radius": 2.92608,
"start": { "start": {
@ -10127,8 +10127,8 @@ description: Artifact commands keyboard.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 248.9139, "x": 248.914,
"y": 83.2991 "y": 83.299
}, },
"radius": 2.92608, "radius": 2.92608,
"start": { "start": {
@ -10171,7 +10171,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },
@ -10187,7 +10187,7 @@ description: Artifact commands keyboard.kcl
"planar_normal": { "planar_normal": {
"x": 0.0, "x": 0.0,
"y": -0.121, "y": -0.121,
"z": 0.9927 "z": 0.993
} }
} }
}, },

View File

@ -171,7 +171,7 @@ description: Variables in memory after executing keyboard.kcl
}, },
{ {
"type": "Number", "type": "Number",
"value": 0.1219, "value": 0.122,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Count" "type": "Count"
@ -347,7 +347,7 @@ description: Variables in memory after executing keyboard.kcl
}, },
{ {
"type": "Number", "type": "Number",
"value": 0.1219, "value": 0.122,
"ty": { "ty": {
"type": "Known", "type": "Known",
"type": "Count" "type": "Count"

View File

@ -237,7 +237,7 @@ description: Variables in memory after executing lego.kcl
}, },
"lSegments": { "lSegments": {
"type": "Number", "type": "Number",
"value": 7.9333, "value": 7.933,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -1551,8 +1551,8 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.9848, "x": 0.985,
"y": 0.1736, "y": 0.174,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -1575,8 +1575,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -1627,7 +1627,7 @@ description: Artifact commands multi-axis-robot.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 22.225, "x": 22.225,
"y": 38.4948, "y": 38.495,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1643,8 +1643,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 45.1339, "x": 45.134,
"y": 203.5948 "y": 203.595
}, },
"radius": 76.19999999999999, "radius": 76.19999999999999,
"start": { "start": {
@ -1668,7 +1668,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -87.0764, "x": -87.076,
"y": 127.0, "y": 127.0,
"z": 0.0 "z": 0.0
}, },
@ -1711,8 +1711,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -2416,8 +2416,8 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.9848, "x": 0.985,
"y": 0.1736, "y": 0.174,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -2448,8 +2448,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -2525,8 +2525,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -2586,8 +2586,8 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.9848, "x": 0.985,
"y": 0.1736, "y": 0.174,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -2610,8 +2610,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -2623,8 +2623,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -3.2864, "x": -3.286,
"y": 185.8254, "y": 185.825,
"z": 0.0 "z": 0.0
} }
} }
@ -2686,7 +2686,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -269.3067, "x": -269.307,
"y": 739.914, "y": 739.914,
"z": 0.0 "z": 0.0
}, },
@ -2703,7 +2703,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -224.8567, "x": -224.857,
"y": 943.114 "y": 943.114
}, },
"radius": 50.8, "radius": 50.8,
@ -2728,8 +2728,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -3.2864, "x": -3.286,
"y": 185.8254, "y": 185.825,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -2754,8 +2754,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -2988,7 +2988,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 224.8567, "x": 224.857,
"y": 943.114 "y": 943.114
}, },
"radius": 48.26, "radius": 48.26,
@ -3011,7 +3011,7 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 273.1167, "x": 273.117,
"y": 943.114, "y": 943.114,
"z": 0.0 "z": 0.0
} }
@ -3684,8 +3684,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 216.1693, "x": 216.169,
"y": 907.3117 "y": 907.312
}, },
"radius": 5.08, "radius": 5.08,
"start": { "start": {
@ -3707,8 +3707,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 221.2493, "x": 221.249,
"y": 907.3117, "y": 907.312,
"z": 0.0 "z": 0.0
} }
} }
@ -3739,7 +3739,7 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"center": { "center": {
"x": 224.8567, "x": 224.857,
"y": 943.114, "y": 943.114,
"z": 0.0 "z": 0.0
}, },
@ -4001,7 +4001,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -224.8567, "x": -224.857,
"y": 943.114 "y": 943.114
}, },
"radius": 7.619999999999999, "radius": 7.619999999999999,
@ -4024,7 +4024,7 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -217.2367, "x": -217.237,
"y": 943.114, "y": 943.114,
"z": 0.0 "z": 0.0
} }
@ -4128,8 +4128,8 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
"x": 0.9848, "x": 0.985,
"y": 0.1736, "y": 0.174,
"z": 0.0 "z": 0.0
}, },
"y_axis": { "y_axis": {
@ -4152,8 +4152,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -4165,8 +4165,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -216.5867, "x": -216.587,
"y": 990.0154, "y": 990.015,
"z": 0.0 "z": 0.0
} }
} }
@ -4203,7 +4203,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -224.8567, "x": -224.857,
"y": 943.114 "y": 943.114
}, },
"radius": 47.625, "radius": 47.625,
@ -4228,8 +4228,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 500.2823, "x": 500.282,
"y": -88.2133, "y": -88.213,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -4245,8 +4245,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 275.4257, "x": 275.426,
"y": 854.9007 "y": 854.901
}, },
"radius": 47.625, "radius": 47.625,
"start": { "start": {
@ -4270,8 +4270,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -216.5867, "x": -216.587,
"y": 990.0154, "y": 990.015,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -4296,8 +4296,8 @@ description: Artifact commands multi-axis-robot.kcl
"animated": false, "animated": false,
"adjust_camera": false, "adjust_camera": false,
"planar_normal": { "planar_normal": {
"x": 0.1736, "x": 0.174,
"y": -0.9848, "y": -0.985,
"z": 0.0 "z": 0.0
} }
} }
@ -4375,7 +4375,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -224.8567, "x": -224.857,
"y": 943.114 "y": 943.114
}, },
"radius": 46.99, "radius": 46.99,
@ -4398,7 +4398,7 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -177.8667, "x": -177.867,
"y": 943.114, "y": 943.114,
"z": 0.0 "z": 0.0
} }
@ -4530,8 +4530,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -216.1693, "x": -216.169,
"y": 907.3117 "y": 907.312
}, },
"radius": 5.08, "radius": 5.08,
"start": { "start": {
@ -4553,8 +4553,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -211.0893, "x": -211.089,
"y": 907.3117, "y": 907.312,
"z": 0.0 "z": 0.0
} }
} }
@ -4585,7 +4585,7 @@ description: Artifact commands multi-axis-robot.kcl
"z": 0.0 "z": 0.0
}, },
"center": { "center": {
"x": -224.8567, "x": -224.857,
"y": 943.114, "y": 943.114,
"z": 0.0 "z": 0.0
}, },
@ -5071,8 +5071,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": -275.4257, "x": -275.426,
"y": 854.9007 "y": 854.901
}, },
"radius": 47.625, "radius": 47.625,
"start": { "start": {
@ -5094,8 +5094,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -227.8007, "x": -227.801,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
} }
} }
@ -5199,8 +5199,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 275.4257, "x": 275.426,
"y": 854.9007 "y": 854.901
}, },
"radius": 47.388059701492544, "radius": 47.388059701492544,
"start": { "start": {
@ -5222,8 +5222,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 322.8137, "x": 322.814,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
} }
} }
@ -5445,8 +5445,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 275.4257, "x": 275.426,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
} }
} }
@ -5474,8 +5474,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 44.4077, "x": 44.408,
"y": 1.9389, "y": 1.939,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5491,8 +5491,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 372.4035, "x": 372.404,
"y": 829.4733 "y": 829.473
}, },
"radius": 59.266666666666666, "radius": 59.266666666666666,
"start": { "start": {
@ -5516,8 +5516,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 29.6051, "x": 29.605,
"y": 1.2926, "y": 1.293,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5533,8 +5533,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -35.6062, "x": -35.606,
"y": 36.2331, "y": 36.233,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5550,8 +5550,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -48.4488, "x": -48.449,
"y": 15.2759, "y": 15.276,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5567,8 +5567,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -54.7553, "x": -54.755,
"y": -22.6804, "y": -22.68,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5584,8 +5584,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 275.4257, "x": 275.426,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -5675,8 +5675,8 @@ description: Artifact commands multi-axis-robot.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 275.4257, "x": 275.426,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
} }
} }
@ -5704,8 +5704,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 41.0664, "x": 41.066,
"y": -17.0103, "y": -17.01,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5721,8 +5721,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 375.2518, "x": 375.252,
"y": 845.6263 "y": 845.626
}, },
"radius": 59.266666666666666, "radius": 59.266666666666666,
"start": { "start": {
@ -5746,8 +5746,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 27.3776, "x": 27.378,
"y": -11.3402, "y": -11.34,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5763,7 +5763,7 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -45.8513, "x": -45.851,
"y": -21.87, "y": -21.87,
"z": 0.0 "z": 0.0
}, },
@ -5780,8 +5780,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -50.7516, "x": -50.752,
"y": 2.2159, "y": 2.216,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -5814,8 +5814,8 @@ description: Artifact commands multi-axis-robot.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 275.4257, "x": 275.426,
"y": 854.9007, "y": 854.901,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -707,7 +707,7 @@ description: Artifact commands pdu-faceplate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -30.3375, "x": -30.338,
"y": 20.225, "y": 20.225,
"z": 0.0 "z": 0.0
} }
@ -733,7 +733,7 @@ description: Artifact commands pdu-faceplate.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -10.1125, "x": -10.113,
"y": 20.225, "y": 20.225,
"z": 0.0 "z": 0.0
} }
@ -1099,7 +1099,7 @@ description: Artifact commands pdu-faceplate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -30.3375, "x": -30.338,
"y": 20.225, "y": 20.225,
"z": 0.0 "z": 0.0
}, },
@ -1133,7 +1133,7 @@ description: Artifact commands pdu-faceplate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -10.1125, "x": -10.113,
"y": 20.225, "y": 20.225,
"z": 0.0 "z": 0.0
}, },
@ -1525,7 +1525,7 @@ description: Artifact commands pdu-faceplate.kcl
{ {
"translate": { "translate": {
"property": { "property": {
"x": -208.9625, "x": -208.963,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -2017,7 +2017,7 @@ description: Artifact commands pdu-faceplate.kcl
{ {
"translate": { "translate": {
"property": { "property": {
"x": -128.0625, "x": -128.063,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },

View File

@ -7059,7 +7059,7 @@ description: Variables in memory after executing pdu-faceplate.kcl
}, },
"leftSpacerPosition": { "leftSpacerPosition": {
"type": "Number", "type": "Number",
"value": -208.9625, "value": -208.963,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -7116,12 +7116,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-30.3375, -30.338,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
30.3375, 30.338,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -7135,12 +7135,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
30.3375, 30.338,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
30.3375, 30.338,
-20.225 -20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -7154,12 +7154,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
30.3375, 30.338,
-20.225 -20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-30.3375, -30.338,
-20.225 -20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -7173,12 +7173,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-30.3375, -30.338,
-20.225 -20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-30.3375, -30.338,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -7192,12 +7192,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-30.3375, -30.338,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-30.3375, -30.338,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -7238,11 +7238,11 @@ description: Variables in memory after executing pdu-faceplate.kcl
}, },
"start": { "start": {
"from": [ "from": [
-30.3375, -30.338,
20.225 20.225
], ],
"to": [ "to": [
-30.3375, -30.338,
20.225 20.225
], ],
"units": { "units": {
@ -16604,12 +16604,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-10.1125, -10.113,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
10.1125, 10.113,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -16623,12 +16623,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
10.1125, 10.113,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
10.1125, 10.113,
-20.225 -20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -16642,12 +16642,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
10.1125, 10.113,
-20.225 -20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-10.1125, -10.113,
-20.225 -20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -16661,12 +16661,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-10.1125, -10.113,
-20.225 -20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-10.1125, -10.113,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -16680,12 +16680,12 @@ description: Variables in memory after executing pdu-faceplate.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-10.1125, -10.113,
20.225 20.225
], ],
"tag": null, "tag": null,
"to": [ "to": [
-10.1125, -10.113,
20.225 20.225
], ],
"type": "ToPoint", "type": "ToPoint",
@ -16726,11 +16726,11 @@ description: Variables in memory after executing pdu-faceplate.kcl
}, },
"start": { "start": {
"from": [ "from": [
-10.1125, -10.113,
20.225 20.225
], ],
"to": [ "to": [
-10.1125, -10.113,
20.225 20.225
], ],
"units": { "units": {
@ -16759,7 +16759,7 @@ description: Variables in memory after executing pdu-faceplate.kcl
}, },
"secondSpacerPosition": { "secondSpacerPosition": {
"type": "Number", "type": "Number",
"value": -128.0625, "value": -128.063,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -92,7 +92,7 @@ description: Artifact commands pillow-block-bearing.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 24.765, "x": 24.765,
"y": 0.0254, "y": 0.025,
"z": 0.0 "z": 0.0
} }
} }
@ -129,8 +129,8 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 27.5431, "x": 27.543,
"y": 0.0254 "y": 0.025
}, },
"radius": 2.7781249999999997, "radius": 2.7781249999999997,
"start": { "start": {
@ -287,8 +287,8 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 26.1541, "x": 26.154,
"y": 2.7496, "y": 2.75,
"z": 0.0 "z": 0.0
} }
} }
@ -325,8 +325,8 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 27.5431, "x": 27.543,
"y": 0.3437 "y": 0.344
}, },
"radius": 2.7781249999999997, "radius": 2.7781249999999997,
"start": { "start": {
@ -351,7 +351,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 0.6945, "y": 0.695,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -367,7 +367,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -2.7781, "x": -2.778,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -513,7 +513,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "arc", "type": "arc",
"center": { "center": {
"x": 27.5431, "x": 27.543,
"y": 6.35 "y": 6.35
}, },
"radius": 0.6945312499999999, "radius": 0.6945312499999999,
@ -536,7 +536,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 28.2377, "x": 28.238,
"y": 6.35, "y": 6.35,
"z": 0.0 "z": 0.0
} }
@ -604,7 +604,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 31.5595, "x": 31.559,
"y": 12.7, "y": 12.7,
"z": 0.0 "z": 0.0
} }
@ -633,8 +633,8 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0222, "x": -0.022,
"y": -1.2698, "y": -1.27,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -650,7 +650,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -7.4295, "x": -7.429,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -667,7 +667,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 24.1078, "x": 24.108,
"y": 2.667, "y": 2.667,
"z": 0.0 "z": 0.0
}, },
@ -701,7 +701,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 23.2977, "x": 23.298,
"y": 12.7, "y": 12.7,
"z": 0.0 "z": 0.0
}, },
@ -718,7 +718,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 31.5595, "x": 31.559,
"y": 12.7, "y": 12.7,
"z": 0.0 "z": 0.0
}, },
@ -872,7 +872,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.263, "x": 0.263,
"y": 0.9814, "y": 0.981,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -906,7 +906,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.263, "x": 0.263,
"y": -0.9814, "y": -0.981,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -922,7 +922,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 33.3375, "x": 33.338,
"y": 0.635, "y": 0.635,
"z": 0.0 "z": 0.0
}, },
@ -973,7 +973,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 31.3711, "x": 31.371,
"y": 2.54, "y": 2.54,
"z": 0.0 "z": 0.0
}, },
@ -1007,7 +1007,7 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 23.2622, "x": 23.262,
"y": 15.875, "y": 15.875,
"z": 0.0 "z": 0.0
}, },
@ -1245,8 +1245,8 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -77.7875, "x": -77.788,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
} }
} }
@ -1325,8 +1325,8 @@ description: Artifact commands pillow-block-bearing.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -77.7875, "x": -77.788,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1415,7 +1415,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 33.3375, "x": 33.338,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2275,7 +2275,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -58.7375, "x": -58.738,
"y": -38.1, "y": -38.1,
"z": 0.0 "z": 0.0
} }
@ -2288,7 +2288,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -58.7375, "x": -58.738,
"y": 38.1, "y": 38.1,
"z": 0.0 "z": 0.0
} }
@ -2301,7 +2301,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 68.2625, "x": 68.263,
"y": -38.1, "y": -38.1,
"z": 0.0 "z": 0.0
} }
@ -2314,7 +2314,7 @@ description: Artifact commands pillow-block-bearing.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 68.2625, "x": 68.263,
"y": 38.1, "y": 38.1,
"z": 0.0 "z": 0.0
} }

View File

@ -78,7 +78,7 @@ description: Variables in memory after executing pillow-block-bearing.kcl
}, },
"chainThickness": { "chainThickness": {
"type": "Number", "type": "Number",
"value": 0.0273, "value": 0.027,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -91,7 +91,7 @@ description: Variables in memory after executing pillow-block-bearing.kcl
}, },
"chainWidth": { "chainWidth": {
"type": "Number", "type": "Number",
"value": 0.1094, "value": 0.109,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -104,7 +104,7 @@ description: Variables in memory after executing pillow-block-bearing.kcl
}, },
"counterboreDepth": { "counterboreDepth": {
"type": "Number", "type": "Number",
"value": 0.1875, "value": 0.188,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -130,7 +130,7 @@ description: Variables in memory after executing pillow-block-bearing.kcl
}, },
"linkDiameter": { "linkDiameter": {
"type": "Number", "type": "Number",
"value": 0.0547, "value": 0.055,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -143,7 +143,7 @@ description: Variables in memory after executing pillow-block-bearing.kcl
}, },
"sphereDia": { "sphereDia": {
"type": "Number", "type": "Number",
"value": 0.2188, "value": 0.219,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -66,7 +66,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"property": { "property": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": 3.8354 "z": 3.835
}, },
"set": false, "set": false,
"is_local": true "is_local": true
@ -90,7 +90,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"property": { "property": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": -2.3114 "z": -2.311
}, },
"set": false, "set": false,
"is_local": true "is_local": true
@ -160,7 +160,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"translate": { "translate": {
"x": -0.0, "x": -0.0,
"y": -0.0, "y": -0.0,
"z": -39.7002 "z": -39.7
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -200,7 +200,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"translate": { "translate": {
"x": -0.0, "x": -0.0,
"y": -0.0, "y": -0.0,
"z": -39.7002 "z": -39.7
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -240,7 +240,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"translate": { "translate": {
"x": -0.0, "x": -0.0,
"y": -0.0, "y": -0.0,
"z": -39.7002 "z": -39.7
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -280,7 +280,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"translate": { "translate": {
"x": -0.0, "x": -0.0,
"y": -0.0, "y": -0.0,
"z": -39.7002 "z": -39.7
}, },
"scale": { "scale": {
"x": 1.0, "x": 1.0,
@ -319,7 +319,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"property": { "property": {
"x": 60.325, "x": 60.325,
"y": 0.0, "y": 0.0,
"z": 18.3388 "z": 18.339
}, },
"set": false, "set": false,
"is_local": true "is_local": true
@ -388,7 +388,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"property": { "property": {
"x": 60.325, "x": 60.325,
"y": 0.0, "y": 0.0,
"z": -36.0648 "z": -36.065
}, },
"set": false, "set": false,
"is_local": true "is_local": true
@ -505,7 +505,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"property": { "property": {
"x": 0.0, "x": 0.0,
"y": 0.0, "y": 0.0,
"z": -15.0114 "z": -15.011
}, },
"set": false, "set": false,
"is_local": false "is_local": false
@ -598,7 +598,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 52.3875, "x": 52.387,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -730,7 +730,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 30.1625, "x": 30.162,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2416,7 +2416,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 15.0876, "x": 15.088,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2722,7 +2722,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 11.9126, "x": 11.913,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -2852,7 +2852,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 6.35, "x": 6.35,
"y": 3.6662, "y": 3.666,
"z": 0.0 "z": 0.0
} }
} }
@ -2881,7 +2881,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0, "x": -0.0,
"y": -7.3323, "y": -7.332,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2898,7 +2898,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -6.35, "x": -6.35,
"y": -3.6662, "y": -3.666,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2915,7 +2915,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -6.35, "x": -6.35,
"y": 3.6662, "y": 3.666,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2932,7 +2932,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 7.3323, "y": 7.332,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -2949,7 +2949,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 6.35, "x": 6.35,
"y": 3.6662, "y": 3.666,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3072,7 +3072,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 7.9375, "x": 7.938,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -3213,8 +3213,8 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 11.9063, "x": 11.906,
"y": 6.8741, "y": 6.874,
"z": 0.0 "z": 0.0
} }
} }
@ -3243,7 +3243,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -0.0, "x": -0.0,
"y": -13.7482, "y": -13.748,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3259,8 +3259,8 @@ description: Artifact commands pipe-flange-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.9062, "x": -11.906,
"y": -6.8741, "y": -6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3276,8 +3276,8 @@ description: Artifact commands pipe-flange-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -11.9063, "x": -11.906,
"y": 6.8741, "y": 6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3294,7 +3294,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 13.7482, "y": 13.748,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3310,8 +3310,8 @@ description: Artifact commands pipe-flange-assembly.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 11.9063, "x": 11.906,
"y": 6.8741, "y": 6.874,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -3438,7 +3438,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 7.9375, "x": 7.938,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -3686,7 +3686,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 30.1625, "x": 30.162,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -3699,7 +3699,7 @@ description: Artifact commands pipe-flange-assembly.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 30.1625, "x": 30.162,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -1483,7 +1483,7 @@ description: Operations executed pipe-flange-assembly.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.4688, "value": -0.469,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1583,7 +1583,7 @@ description: Operations executed pipe-flange-assembly.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": 0.5469, "value": 0.547,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -1638,7 +1638,7 @@ description: Operations executed pipe-flange-assembly.kcl
"length": { "length": {
"value": { "value": {
"type": "Number", "type": "Number",
"value": -0.5469, "value": -0.547,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -61,7 +61,7 @@ description: Variables in memory after executing pipe-flange-assembly.kcl
}, },
"boltHexFlatLength": { "boltHexFlatLength": {
"type": "Number", "type": "Number",
"value": 0.2887, "value": 0.289,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -260,7 +260,7 @@ description: Variables in memory after executing pipe-flange-assembly.kcl
}, },
"hexNutFlatLength": { "hexNutFlatLength": {
"type": "Number", "type": "Number",
"value": 0.5413, "value": 0.541,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -273,7 +273,7 @@ description: Variables in memory after executing pipe-flange-assembly.kcl
}, },
"hexNutFlatToFlat": { "hexNutFlatToFlat": {
"type": "Number", "type": "Number",
"value": 0.9375, "value": 0.938,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {
@ -286,7 +286,7 @@ description: Variables in memory after executing pipe-flange-assembly.kcl
}, },
"hexNutThickness": { "hexNutThickness": {
"type": "Number", "type": "Number",
"value": 0.5469, "value": 0.547,
"ty": { "ty": {
"type": "Default", "type": "Default",
"len": { "len": {

View File

@ -110,7 +110,7 @@ description: Artifact commands pipe.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 30.1625, "x": 30.162,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }

View File

@ -97,13 +97,13 @@ description: Variables in memory after executing pipe.kcl
0.0 0.0
], ],
"from": [ "from": [
1.1875, 1.188,
0.0 0.0
], ],
"radius": 1.1875, "radius": 1.1875,
"tag": null, "tag": null,
"to": [ "to": [
1.1875, 1.188,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -144,11 +144,11 @@ description: Variables in memory after executing pipe.kcl
}, },
"start": { "start": {
"from": [ "from": [
1.1875, 1.188,
0.0 0.0
], ],
"to": [ "to": [
1.1875, 1.188,
0.0 0.0
], ],
"units": { "units": {
@ -241,13 +241,13 @@ description: Variables in memory after executing pipe.kcl
0.0 0.0
], ],
"from": [ "from": [
1.1875, 1.188,
0.0 0.0
], ],
"radius": 1.1875, "radius": 1.1875,
"tag": null, "tag": null,
"to": [ "to": [
1.1875, 1.188,
0.0 0.0
], ],
"type": "Circle", "type": "Circle",
@ -288,11 +288,11 @@ description: Variables in memory after executing pipe.kcl
}, },
"start": { "start": {
"from": [ "from": [
1.1875, 1.188,
0.0 0.0
], ],
"to": [ "to": [
1.1875, 1.188,
0.0 0.0
], ],
"units": { "units": {

View File

@ -106,7 +106,7 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.5875, "x": 1.588,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -124,7 +124,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 76.2, "x": 76.2,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -175,7 +175,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 73.025, "x": 73.025,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -191,8 +191,8 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 39.6875, "x": 39.688,
"y": 5.4993, "y": 5.499,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -226,7 +226,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 3.175, "x": 3.175,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -277,7 +277,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -293,7 +293,7 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 36.5125, "x": 36.512,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -325,7 +325,7 @@ description: Artifact commands poopy-shoe.kcl
"target": "[uuid]", "target": "[uuid]",
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": 130.1775, "y": 130.178,
"z": 0.0 "z": 0.0
}, },
"axis": { "axis": {
@ -437,7 +437,7 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.5875, "x": 1.588,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -455,7 +455,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 76.2, "x": 76.2,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -506,7 +506,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 73.025, "x": 73.025,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -522,8 +522,8 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 39.6875, "x": 39.688,
"y": 5.4993, "y": 5.499,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -557,7 +557,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 3.175, "x": 3.175,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -608,7 +608,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -624,7 +624,7 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 36.5125, "x": 36.512,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -707,7 +707,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "make_plane", "type": "make_plane",
"origin": { "origin": {
"x": 0.0, "x": 0.0,
"y": -36.5125, "y": -36.512,
"z": 0.0 "z": 0.0
}, },
"x_axis": { "x_axis": {
@ -802,7 +802,7 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 75.1566, "x": 75.157,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -961,7 +961,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 3.175, "x": 3.175,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -977,8 +977,8 @@ description: Artifact commands poopy-shoe.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 36.5125, "x": 36.512,
"y": 5.4993, "y": 5.499,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1012,7 +1012,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 73.025, "x": 73.025,
"y": 63.2415, "y": 63.242,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -1063,7 +1063,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 50.8, "x": 50.8,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1080,7 +1080,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": 50.8, "x": 50.8,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1289,7 +1289,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -50.8, "x": -50.8,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1306,7 +1306,7 @@ description: Artifact commands poopy-shoe.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -50.8, "x": -50.8,
"y": -52.3875, "y": -52.387,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null

View File

@ -599,7 +599,7 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -613,7 +613,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.0 0.0
], ],
"tag": { "tag": {
@ -625,7 +625,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"to": [ "to": [
3.0, 3.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -639,7 +639,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
3.0, 3.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -682,7 +682,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -696,12 +696,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -714,13 +714,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -733,13 +733,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -753,7 +753,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -796,7 +796,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -810,11 +810,11 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.0, 0.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.437,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -828,7 +828,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.437,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -948,7 +948,7 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -962,7 +962,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.0 0.0
], ],
"tag": { "tag": {
@ -974,7 +974,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"to": [ "to": [
3.0, 3.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -988,7 +988,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
3.0, 3.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1031,7 +1031,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1045,12 +1045,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1063,13 +1063,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1082,13 +1082,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1102,7 +1102,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1145,7 +1145,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1159,11 +1159,11 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.0, 0.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.437,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1177,7 +1177,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.437,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -1372,7 +1372,7 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1386,7 +1386,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.0 0.0
], ],
"tag": { "tag": {
@ -1398,7 +1398,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"to": [ "to": [
3.0, 3.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1412,7 +1412,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
3.0, 3.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1455,7 +1455,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1469,12 +1469,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1487,13 +1487,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1506,13 +1506,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1526,7 +1526,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1569,7 +1569,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1583,11 +1583,11 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.0, 0.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.437,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1601,7 +1601,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.437,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -1733,8 +1733,8 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
4.4384, 4.438,
2.5625 2.563
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1747,12 +1747,12 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
4.4384, 4.438,
2.5625 2.563
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.9589, 2.959,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -1766,7 +1766,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
2.9589, 2.959,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -1995,7 +1995,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2009,12 +2009,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2027,13 +2027,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2046,13 +2046,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2066,7 +2066,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2105,7 +2105,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
3.0, 3.0,
3.1241 3.124
], ],
"from": [ "from": [
3.0, 3.0,
@ -2114,7 +2114,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
5.0, 5.0,
3.0625 3.063
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -2129,11 +2129,11 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
7.0, 7.0,
3.0009 3.001
], ],
"from": [ "from": [
5.0, 5.0,
3.0625 3.063
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2329,7 +2329,7 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2343,7 +2343,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.0 0.0
], ],
"tag": { "tag": {
@ -2355,7 +2355,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"to": [ "to": [
3.0, 3.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2369,7 +2369,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
3.0, 3.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2412,7 +2412,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2426,12 +2426,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2444,13 +2444,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2463,13 +2463,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2483,7 +2483,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2526,7 +2526,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2540,11 +2540,11 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.0, 0.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.437,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -2558,7 +2558,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.437,
0.0 0.0
], ],
"tag": null, "tag": null,
@ -2789,7 +2789,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
-3.0, -3.0,
3.1241 3.124
], ],
"from": [ "from": [
-3.0, -3.0,
@ -2798,7 +2798,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
-5.0, -5.0,
3.0625 3.063
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -2813,11 +2813,11 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
-7.0, -7.0,
3.0009 3.001
], ],
"from": [ "from": [
-5.0, -5.0,
3.0625 3.063
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3185,7 +3185,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
-3.0, -3.0,
3.1241 3.124
], ],
"from": [ "from": [
-3.0, -3.0,
@ -3194,7 +3194,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
-5.0, -5.0,
3.0625 3.063
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -3209,11 +3209,11 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
-7.0, -7.0,
3.0009 3.001
], ],
"from": [ "from": [
-5.0, -5.0,
3.0625 3.063
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3663,7 +3663,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3677,12 +3677,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3695,13 +3695,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3714,13 +3714,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3734,7 +3734,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3773,7 +3773,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
3.0, 3.0,
3.1241 3.124
], ],
"from": [ "from": [
3.0, 3.0,
@ -3782,7 +3782,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
5.0, 5.0,
3.0625 3.063
], ],
"type": "TangentialArcTo", "type": "TangentialArcTo",
"units": { "units": {
@ -3797,11 +3797,11 @@ description: Variables in memory after executing poopy-shoe.kcl
"ccw": true, "ccw": true,
"center": [ "center": [
7.0, 7.0,
3.0009 3.001
], ],
"from": [ "from": [
5.0, 5.0,
3.0625 3.063
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3997,7 +3997,7 @@ description: Variables in memory after executing poopy-shoe.kcl
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4011,7 +4011,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.0 0.0
], ],
"tag": { "tag": {
@ -4023,7 +4023,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"to": [ "to": [
3.0, 3.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4037,7 +4037,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
3.0, 3.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -4080,7 +4080,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
2.875, 2.875,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4094,12 +4094,12 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
2.875, 2.875,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5625, 1.563,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4112,13 +4112,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.5625, 1.563,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.438,
0.2165 0.217
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4131,13 +4131,13 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.438,
0.2165 0.217
], ],
"tag": null, "tag": null,
"to": [ "to": [
0.125, 0.125,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4151,7 +4151,7 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.125, 0.125,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -4194,7 +4194,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"tag": null, "tag": null,
"to": [ "to": [
0.0, 0.0,
2.4898 2.49
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -4208,11 +4208,11 @@ description: Variables in memory after executing poopy-shoe.kcl
}, },
"from": [ "from": [
0.0, 0.0,
2.4898 2.49
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.4375, 1.437,
0.0 0.0
], ],
"type": "ToPoint", "type": "ToPoint",
@ -4226,7 +4226,7 @@ description: Variables in memory after executing poopy-shoe.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
1.4375, 1.437,
0.0 0.0
], ],
"tag": null, "tag": null,

View File

@ -190,7 +190,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -4.5, "x": -4.5,
"y": 2.5981, "y": 2.598,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -338,7 +338,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 16.4545, "x": 16.454,
"y": -9.5, "y": -9.5,
"z": 0.0 "z": 0.0
}, },
@ -371,7 +371,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -16.4545, "x": -16.454,
"y": -9.5, "y": -9.5,
"z": 0.0 "z": 0.0
}, },
@ -389,7 +389,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -4.5, "x": -4.5,
"y": 2.5981, "y": 2.598,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -514,7 +514,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 27.7128, "x": 27.713,
"y": -16.0, "y": -16.0,
"z": 0.0 "z": 0.0
}, },
@ -547,7 +547,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -27.7128, "x": -27.713,
"y": -16.0, "y": -16.0,
"z": 0.0 "z": 0.0
}, },
@ -565,7 +565,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -6.0, "x": -6.0,
"y": 3.4641, "y": 3.464,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -738,7 +738,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 13.8564, "x": 13.856,
"y": -8.0, "y": -8.0,
"z": 0.0 "z": 0.0
}, },
@ -771,7 +771,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -13.8564, "x": -13.856,
"y": -8.0, "y": -8.0,
"z": 0.0 "z": 0.0
}, },
@ -789,7 +789,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -7.5, "x": -7.5,
"y": 4.3301, "y": 4.33,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -962,7 +962,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 1.3856, "x": 1.386,
"y": -0.8, "y": -0.8,
"z": 0.0 "z": 0.0
}, },
@ -995,7 +995,7 @@ description: Artifact commands prosthetic-hip.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -1.3856, "x": -1.386,
"y": -0.8, "y": -0.8,
"z": 0.0 "z": 0.0
}, },
@ -1013,7 +1013,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -2.4, "x": -2.4,
"y": 1.3856, "y": 1.386,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null
@ -1237,7 +1237,7 @@ description: Artifact commands prosthetic-hip.kcl
"type": "tangential_arc_to", "type": "tangential_arc_to",
"to": { "to": {
"x": -4.5, "x": -4.5,
"y": 2.5981, "y": 2.598,
"z": 0.0 "z": 0.0
}, },
"angle_snap_increment": null "angle_snap_increment": null

View File

@ -102,7 +102,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
0.9946, 0.995,
5.2 5.2
], ],
"from": [ "from": [
@ -165,7 +165,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.2, 0.2,
3.8813 3.881
], ],
"from": [ "from": [
0.2, 0.2,
@ -436,7 +436,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.2, 0.2,
4.2207 4.221
], ],
"from": [ "from": [
0.2, 0.2,
@ -588,7 +588,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-15.5, -15.5,
12.3301 12.33
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -602,12 +602,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-15.5, -15.5,
12.3301 12.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.6436, -1.644,
4.3301 4.33
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -621,17 +621,17 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-4.1436, -4.144,
-0.0 -0.0
], ],
"from": [ "from": [
-1.6436, -1.644,
4.3301 4.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.6436, -1.644,
-4.3301 -4.33
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -644,13 +644,13 @@ description: Variables in memory after executing prosthetic-hip.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-1.6436, -1.644,
-4.3301 -4.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-15.5, -15.5,
-12.3301 -12.33
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -669,7 +669,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-15.5, -15.5,
-12.3301 -12.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -872,7 +872,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
1.5, 1.5,
3.0981 3.098
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -886,12 +886,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
1.5, 1.5,
3.0981 3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.366, 2.366,
2.5981 2.598
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -910,12 +910,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
2.366, 2.366,
2.5981 2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.366, 2.366,
-2.5981 -2.598
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -929,12 +929,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
2.366, 2.366,
-2.5981 -2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5, 1.5,
-3.0981 -3.098
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -953,7 +953,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
1.5, 1.5,
-3.0981 -3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1335,7 +1335,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": true, "ccw": true,
"center": [ "center": [
-0.6172, -0.617,
3.1 3.1
], ],
"from": [ "from": [
@ -1398,7 +1398,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"ccw": false, "ccw": false,
"center": [ "center": [
0.68, 0.68,
3.9602 3.96
], ],
"from": [ "from": [
0.68, 0.68,
@ -1653,7 +1653,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
1.5, 1.5,
3.0981 3.098
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1667,12 +1667,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
1.5, 1.5,
3.0981 3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.366, 2.366,
2.5981 2.598
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1691,12 +1691,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
2.366, 2.366,
2.5981 2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
2.366, 2.366,
-2.5981 -2.598
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1710,12 +1710,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
2.366, 2.366,
-2.5981 -2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
1.5, 1.5,
-3.0981 -3.098
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1734,7 +1734,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
1.5, 1.5,
-3.0981 -3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -1875,7 +1875,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-3.5, -3.5,
12.0981 12.098
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1889,12 +1889,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-3.5, -3.5,
12.0981 12.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
12.9545, 12.954,
2.5981 2.598
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1908,17 +1908,17 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
11.4545, 11.454,
0.0 0.0
], ],
"from": [ "from": [
12.9545, 12.954,
2.5981 2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
12.9545, 12.954,
-2.5981 -2.598
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -1931,13 +1931,13 @@ description: Variables in memory after executing prosthetic-hip.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
12.9545, 12.954,
-2.5981 -2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
-3.5, -3.5,
-12.0981 -12.098
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -1956,7 +1956,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-3.5, -3.5,
-12.0981 -12.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2097,7 +2097,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-9.5, -9.5,
19.4641 19.464
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2111,12 +2111,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-9.5, -9.5,
19.4641 19.464
], ],
"tag": null, "tag": null,
"to": [ "to": [
18.2128, 18.213,
3.4641 3.464
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2130,17 +2130,17 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
16.2128, 16.213,
0.0 0.0
], ],
"from": [ "from": [
18.2128, 18.213,
3.4641 3.464
], ],
"tag": null, "tag": null,
"to": [ "to": [
18.2128, 18.213,
-3.4641 -3.464
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2153,13 +2153,13 @@ description: Variables in memory after executing prosthetic-hip.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
18.2128, 18.213,
-3.4641 -3.464
], ],
"tag": null, "tag": null,
"to": [ "to": [
-9.5, -9.5,
-19.4641 -19.464
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2178,7 +2178,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-9.5, -9.5,
-19.4641 -19.464
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2319,7 +2319,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-15.5, -15.5,
12.3301 12.33
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2333,12 +2333,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-15.5, -15.5,
12.3301 12.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.6436, -1.644,
4.3301 4.33
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2352,17 +2352,17 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-4.1436, -4.144,
-0.0 -0.0
], ],
"from": [ "from": [
-1.6436, -1.644,
4.3301 4.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-1.6436, -1.644,
-4.3301 -4.33
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2375,13 +2375,13 @@ description: Variables in memory after executing prosthetic-hip.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-1.6436, -1.644,
-4.3301 -4.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
-15.5, -15.5,
-12.3301 -12.33
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2400,7 +2400,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-15.5, -15.5,
-12.3301 -12.33
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2541,7 +2541,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-17.1, -17.1,
2.1856 2.186
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2555,12 +2555,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-17.1, -17.1,
2.1856 2.186
], ],
"tag": null, "tag": null,
"to": [ "to": [
-15.7144, -15.714,
1.3856 1.386
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2574,17 +2574,17 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"ccw": false, "ccw": false,
"center": [ "center": [
-16.5144, -16.514,
-0.0 -0.0
], ],
"from": [ "from": [
-15.7144, -15.714,
1.3856 1.386
], ],
"tag": null, "tag": null,
"to": [ "to": [
-15.7144, -15.714,
-1.3856 -1.386
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2597,13 +2597,13 @@ description: Variables in memory after executing prosthetic-hip.kcl
"sourceRange": [] "sourceRange": []
}, },
"from": [ "from": [
-15.7144, -15.714,
-1.3856 -1.386
], ],
"tag": null, "tag": null,
"to": [ "to": [
-17.1, -17.1,
-2.1856 -2.186
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2622,7 +2622,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-17.1, -17.1,
-2.1856 -2.186
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -2763,7 +2763,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-18.9, -18.9,
3.0981 3.098
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2777,12 +2777,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-18.9, -18.9,
3.0981 3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.034, -18.034,
2.5981 2.598
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2801,12 +2801,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-18.034, -18.034,
2.5981 2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.034, -18.034,
-2.5981 -2.598
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -2820,12 +2820,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-18.034, -18.034,
-2.5981 -2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.9, -18.9,
-3.0981 -3.098
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -2844,7 +2844,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-18.9, -18.9,
-3.0981 -3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
@ -3039,7 +3039,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
"tag": null, "tag": null,
"to": [ "to": [
-18.9, -18.9,
3.0981 3.098
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -3053,12 +3053,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-18.9, -18.9,
3.0981 3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.034, -18.034,
2.5981 2.598
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3077,12 +3077,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-18.034, -18.034,
2.5981 2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.034, -18.034,
-2.5981 -2.598
], ],
"type": "TangentialArc", "type": "TangentialArc",
"units": { "units": {
@ -3096,12 +3096,12 @@ description: Variables in memory after executing prosthetic-hip.kcl
}, },
"from": [ "from": [
-18.034, -18.034,
-2.5981 -2.598
], ],
"tag": null, "tag": null,
"to": [ "to": [
-18.9, -18.9,
-3.0981 -3.098
], ],
"type": "ToPoint", "type": "ToPoint",
"units": { "units": {
@ -3120,7 +3120,7 @@ description: Variables in memory after executing prosthetic-hip.kcl
], ],
"from": [ "from": [
-18.9, -18.9,
-3.0981 -3.098
], ],
"tag": null, "tag": null,
"to": [ "to": [

View File

@ -78,7 +78,7 @@ description: Artifact commands router-template-cross-bar.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 31.8813, "y": 31.881,
"z": 0.0 "z": 0.0
} }
} }
@ -148,7 +148,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 22.6313, "x": 22.631,
"y": -10.0, "y": -10.0,
"z": 0.0 "z": 0.0
}, },
@ -182,8 +182,8 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 32.6313, "x": 32.631,
"y": 10.9406, "y": 10.941,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -199,8 +199,8 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 102.6313, "x": 102.631,
"y": 10.9406, "y": 10.941,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -233,8 +233,8 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 32.6313, "x": 32.631,
"y": 30.9406, "y": 30.941,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -250,8 +250,8 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 32.6313, "x": 32.631,
"y": 41.8813, "y": 41.881,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -268,7 +268,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 41.8813, "y": 41.881,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -284,7 +284,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -32.6313, "x": -32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -302,7 +302,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -10.9406, "y": -10.941,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -370,7 +370,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -20.9406, "y": -20.941,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -446,7 +446,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 31.8813, "y": 31.881,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -540,7 +540,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 32.6313, "x": 32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -620,7 +620,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 32.6313, "x": 32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -711,7 +711,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -32.6313, "x": -32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -791,7 +791,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -32.6313, "x": -32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -882,7 +882,7 @@ description: Artifact commands router-template-cross-bar.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -32.6313, "x": -32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
} }
@ -911,7 +911,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 65.2625, "x": 65.263,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -945,7 +945,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -65.2625, "x": -65.263,
"y": -0.0, "y": -0.0,
"z": 0.0 "z": 0.0
}, },
@ -962,7 +962,7 @@ description: Artifact commands router-template-cross-bar.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -32.6313, "x": -32.631,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },

View File

@ -78,7 +78,7 @@ description: Artifact commands router-template-slate.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 0.0, "x": 0.0,
"y": 28.1188, "y": 28.119,
"z": 0.0 "z": 0.0
} }
} }
@ -148,8 +148,8 @@ description: Artifact commands router-template-slate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 18.8688, "x": 18.869,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -166,7 +166,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 30.75, "x": 30.75,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -200,7 +200,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": -122.4938, "y": -122.494,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -250,7 +250,7 @@ description: Artifact commands router-template-slate.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 11.8813, "x": 11.881,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -268,7 +268,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 32.4938, "y": 32.494,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -310,7 +310,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 28.1188, "y": 28.119,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -405,7 +405,7 @@ description: Artifact commands router-template-slate.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -20.75, "x": -20.75,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
} }
} }
@ -485,7 +485,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": -20.75, "x": -20.75,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -576,7 +576,7 @@ description: Artifact commands router-template-slate.kcl
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": 20.75, "x": 20.75,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
} }
} }
@ -656,7 +656,7 @@ description: Artifact commands router-template-slate.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 20.75, "x": 20.75,
"y": -12.4938, "y": -12.494,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false

View File

@ -139,7 +139,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -48.8134, "x": -48.813,
"y": 60.325, "y": 60.325,
"z": 0.0 "z": 0.0
}, },
@ -173,7 +173,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 62.6782, "y": 62.678,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -189,7 +189,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 45.7466, "x": 45.747,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -222,8 +222,8 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": 14.9029, "x": 14.903,
"y": -55.6185, "y": -55.619,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -322,8 +322,8 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -14.9029, "x": -14.903,
"y": 55.6185, "y": 55.619,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -356,7 +356,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"type": "line", "type": "line",
"end": { "end": {
"x": 0.0, "x": 0.0,
"y": 65.8532, "y": 65.853,
"z": 0.0 "z": 0.0
}, },
"relative": false "relative": false
@ -372,7 +372,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -45.7466, "x": -45.747,
"y": 0.0, "y": 0.0,
"z": 0.0 "z": 0.0
}, },
@ -405,8 +405,8 @@ description: Artifact commands sheet-metal-bracket.kcl
"segment": { "segment": {
"type": "line", "type": "line",
"end": { "end": {
"x": -14.9029, "x": -14.903,
"y": -55.6185, "y": -55.619,
"z": 0.0 "z": 0.0
}, },
"relative": true "relative": true
@ -1075,7 +1075,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"type": "move_path_pen", "type": "move_path_pen",
"path": "[uuid]", "path": "[uuid]",
"to": { "to": {
"x": -23.0187, "x": -23.019,
"y": 31.75, "y": 31.75,
"z": 0.0 "z": 0.0
} }

Some files were not shown because too many files have changed in this diff Show More