Add warning when using a module with no return value (#5771)
* Add warning when using a module with no return value * Update output files since changing source range of the pipeline argument * Change wording of error message to not use the term unlabeled
This commit is contained in:
@ -860,7 +860,7 @@ part = rectShape([0, 0], 20, 20)
|
|||||||
};
|
};
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
err.error.message(),
|
err.error.message(),
|
||||||
"This function expected this argument to be of type SketchOrSurface but it's actually of type string (text)"
|
"This function expected the input argument to be of type SketchOrSurface but it's actually of type string (text)"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2106,7 +2106,7 @@ async fn kcl_test_better_type_names() {
|
|||||||
},
|
},
|
||||||
None => todo!(),
|
None => todo!(),
|
||||||
};
|
};
|
||||||
assert_eq!(err, "This function expected this argument to be of type SolidSet but it's actually of type Sketch. You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`");
|
assert_eq!(err, "This function expected the input argument to be of type SolidSet but it's actually of type Sketch. You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
|
@ -544,12 +544,11 @@ impl ExecutorContext {
|
|||||||
self.exec_module_for_result(module_id, exec_state, ExecutionKind::Normal, metadata.source_range)
|
self.exec_module_for_result(module_id, exec_state, ExecutionKind::Normal, metadata.source_range)
|
||||||
.await?
|
.await?
|
||||||
.unwrap_or_else(|| {
|
.unwrap_or_else(|| {
|
||||||
// The module didn't have a return value. Currently,
|
exec_state.warn(CompilationError::err(
|
||||||
// the only way to have a return value is with the final
|
metadata.source_range,
|
||||||
// statement being an expression statement.
|
"Imported module has no return value. The last statement of the module must be an expression, usually the Solid.",
|
||||||
//
|
));
|
||||||
// TODO: Make a warning when we support them in the
|
|
||||||
// execution phase.
|
|
||||||
let mut new_meta = vec![metadata.to_owned()];
|
let mut new_meta = vec![metadata.to_owned()];
|
||||||
new_meta.extend(meta);
|
new_meta.extend(meta);
|
||||||
KclValue::KclNone {
|
KclValue::KclNone {
|
||||||
@ -1135,7 +1134,7 @@ impl Node<CallExpressionKw> {
|
|||||||
},
|
},
|
||||||
self.into(),
|
self.into(),
|
||||||
ctx.clone(),
|
ctx.clone(),
|
||||||
exec_state.mod_local.pipe_value.clone().map(Arg::synthetic),
|
exec_state.mod_local.pipe_value.clone().map(|v| Arg::new(v, callsite)),
|
||||||
);
|
);
|
||||||
match ctx.stdlib.get_either(fn_name) {
|
match ctx.stdlib.get_either(fn_name) {
|
||||||
FunctionKind::Core(func) => {
|
FunctionKind::Core(func) => {
|
||||||
@ -1297,7 +1296,7 @@ impl Node<CallExpression> {
|
|||||||
fn_args,
|
fn_args,
|
||||||
self.into(),
|
self.into(),
|
||||||
ctx.clone(),
|
ctx.clone(),
|
||||||
exec_state.mod_local.pipe_value.clone().map(Arg::synthetic),
|
exec_state.mod_local.pipe_value.clone().map(|v| Arg::new(v, callsite)),
|
||||||
);
|
);
|
||||||
let mut return_value = {
|
let mut return_value = {
|
||||||
// Don't early-return in this block.
|
// Don't early-return in this block.
|
||||||
@ -1948,7 +1947,11 @@ impl FunctionSource {
|
|||||||
args,
|
args,
|
||||||
source_range,
|
source_range,
|
||||||
ctx.clone(),
|
ctx.clone(),
|
||||||
exec_state.mod_local.pipe_value.clone().map(Arg::synthetic),
|
exec_state
|
||||||
|
.mod_local
|
||||||
|
.pipe_value
|
||||||
|
.clone()
|
||||||
|
.map(|v| Arg::new(v, source_range)),
|
||||||
);
|
);
|
||||||
|
|
||||||
func(exec_state, args).await.map(Some)
|
func(exec_state, args).await.map(Some)
|
||||||
|
@ -659,7 +659,11 @@ impl KclValue {
|
|||||||
args,
|
args,
|
||||||
source_range,
|
source_range,
|
||||||
ctx.clone(),
|
ctx.clone(),
|
||||||
exec_state.mod_local.pipe_value.clone().map(Arg::synthetic),
|
exec_state
|
||||||
|
.mod_local
|
||||||
|
.pipe_value
|
||||||
|
.clone()
|
||||||
|
.map(|v| Arg::new(v, source_range)),
|
||||||
);
|
);
|
||||||
let result = func(exec_state, args).await.map(Some);
|
let result = func(exec_state, args).await.map(Some);
|
||||||
exec_state.mut_stack().pop_env();
|
exec_state.mut_stack().pop_env();
|
||||||
|
@ -227,7 +227,7 @@ impl Args {
|
|||||||
T::from_kcl_val(&arg.value).ok_or_else(|| {
|
T::from_kcl_val(&arg.value).ok_or_else(|| {
|
||||||
let expected_type_name = tynm::type_name::<T>();
|
let expected_type_name = tynm::type_name::<T>();
|
||||||
let actual_type_name = arg.value.human_friendly_type();
|
let actual_type_name = arg.value.human_friendly_type();
|
||||||
let msg_base = format!("This function expected this argument to be of type {expected_type_name} but it's actually of type {actual_type_name}");
|
let msg_base = format!("This function expected the input argument to be of type {expected_type_name} but it's actually of type {actual_type_name}");
|
||||||
let suggestion = match (expected_type_name.as_str(), actual_type_name) {
|
let suggestion = match (expected_type_name.as_str(), actual_type_name) {
|
||||||
("SolidSet", "Sketch") => Some(
|
("SolidSet", "Sketch") => Some(
|
||||||
"You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`",
|
"You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed angled_line.kcl
|
description: Operations executed angled_line.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed angled_line.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
270,
|
||||||
0,
|
289,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed artifact_graph_example_code1.kcl
|
description: Operations executed artifact_graph_example_code1.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -125,8 +125,8 @@ description: Operations executed artifact_graph_example_code1.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
298,
|
||||||
0,
|
332,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed basic_fillet_cube_close_opposite.kcl
|
description: Operations executed basic_fillet_cube_close_opposite.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed basic_fillet_cube_close_opposite.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
197,
|
||||||
0,
|
217,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -129,8 +129,8 @@ description: Operations executed basic_fillet_cube_close_opposite.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
223,
|
||||||
0,
|
283,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed basic_fillet_cube_end.kcl
|
description: Operations executed basic_fillet_cube_end.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed basic_fillet_cube_end.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
185,
|
||||||
0,
|
205,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -129,8 +129,8 @@ description: Operations executed basic_fillet_cube_end.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
211,
|
||||||
0,
|
269,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed basic_fillet_cube_next_adjacent.kcl
|
description: Operations executed basic_fillet_cube_next_adjacent.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed basic_fillet_cube_next_adjacent.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
212,
|
||||||
0,
|
232,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -124,8 +124,8 @@ description: Operations executed basic_fillet_cube_next_adjacent.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
238,
|
||||||
0,
|
294,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed basic_fillet_cube_previous_adjacent.kcl
|
description: Operations executed basic_fillet_cube_previous_adjacent.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed basic_fillet_cube_previous_adjacent.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
212,
|
||||||
0,
|
232,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -124,8 +124,8 @@ description: Operations executed basic_fillet_cube_previous_adjacent.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
238,
|
||||||
0,
|
298,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed basic_fillet_cube_start.kcl
|
description: Operations executed basic_fillet_cube_start.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed basic_fillet_cube_start.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
185,
|
||||||
0,
|
205,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -130,8 +130,8 @@ description: Operations executed basic_fillet_cube_start.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
211,
|
||||||
0,
|
253,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed big_number_angle_to_match_length_x.kcl
|
description: Operations executed big_number_angle_to_match_length_x.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed big_number_angle_to_match_length_x.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
183,
|
||||||
0,
|
203,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed big_number_angle_to_match_length_y.kcl
|
description: Operations executed big_number_angle_to_match_length_y.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed big_number_angle_to_match_length_y.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
183,
|
||||||
0,
|
203,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed circle_three_point.kcl
|
description: Operations executed circle_three_point.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed circle_three_point.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
104,
|
||||||
0,
|
124,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed circular_pattern3d_a_pattern.kcl
|
description: Operations executed circular_pattern3d_a_pattern.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed circular_pattern3d_a_pattern.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
159,
|
||||||
0,
|
178,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -139,8 +139,8 @@ description: Operations executed cube.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
374,
|
||||||
0,
|
402,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -80,8 +80,8 @@ description: Operations executed cube_with_error.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
366,
|
||||||
0,
|
390,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -87,8 +87,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1057,
|
||||||
0,
|
1085,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -159,8 +159,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1091,
|
||||||
0,
|
1297,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -280,8 +280,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1497,
|
||||||
0,
|
1521,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -404,8 +404,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1497,
|
||||||
0,
|
1521,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -528,8 +528,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1497,
|
||||||
0,
|
1521,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -652,8 +652,8 @@ description: Operations executed fillet-and-shell.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1497,
|
||||||
0,
|
1521,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed function_sketch.kcl
|
description: Operations executed function_sketch.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -80,8 +80,8 @@ description: Operations executed function_sketch.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
183,
|
||||||
0,
|
202,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed function_sketch_with_position.kcl
|
description: Operations executed function_sketch_with_position.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -80,8 +80,8 @@ description: Operations executed function_sketch_with_position.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
181,
|
||||||
0,
|
200,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed helix_ccw.kcl
|
description: Operations executed helix_ccw.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed helix_ccw.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
77,
|
||||||
0,
|
97,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -125,8 +125,8 @@ description: Operations executed i_shape.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2510,
|
||||||
0,
|
2531,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed import_whole.kcl
|
description: Operations executed import_whole.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,9 +64,9 @@ description: Operations executed import_whole.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
103,
|
||||||
0,
|
123,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -124,8 +124,8 @@ description: Operations executed import_whole.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
83,
|
||||||
0,
|
123,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -93,9 +93,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1379,
|
||||||
0,
|
1417,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -173,9 +173,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1455,
|
||||||
0,
|
1494,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -428,9 +428,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1379,
|
||||||
0,
|
1417,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -508,9 +508,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1455,
|
||||||
0,
|
1494,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -763,9 +763,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1379,
|
||||||
0,
|
1417,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -843,9 +843,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1455,
|
||||||
0,
|
1494,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1104,9 +1104,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1949,
|
||||||
0,
|
1973,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1190,9 +1190,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2015,
|
||||||
0,
|
2039,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1339,9 +1339,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2523,
|
||||||
0,
|
2547,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1485,9 +1485,9 @@ description: Operations executed 3d-boaty.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3047,
|
||||||
0,
|
3071,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -118,8 +118,8 @@ description: Operations executed 80-20-rail.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6006,
|
||||||
0,
|
6034,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -238,8 +238,8 @@ description: Operations executed 80-20-rail.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6042,
|
||||||
0,
|
6746,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -358,8 +358,8 @@ description: Operations executed 80-20-rail.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6754,
|
||||||
0,
|
7457,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed a-parametric-bearing-pillow-block.kcl
|
description: Operations executed a-parametric-bearing-pillow-block.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -254,8 +254,8 @@ description: Operations executed a-parametric-bearing-pillow-block.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1902,
|
||||||
0,
|
1936,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -693,8 +693,8 @@ description: Operations executed a-parametric-bearing-pillow-block.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3383,
|
||||||
0,
|
3408,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed ball-bearing.kcl
|
description: Operations executed ball-bearing.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -519,8 +519,8 @@ description: Operations executed ball-bearing.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1561,
|
||||||
0,
|
1721,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -779,8 +779,8 @@ description: Operations executed ball-bearing.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2214,
|
||||||
0,
|
2374,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1027,8 +1027,8 @@ description: Operations executed ball-bearing.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2718,
|
||||||
0,
|
2878,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed bracket.kcl
|
description: Operations executed bracket.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -274,8 +274,8 @@ description: Operations executed bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1903,
|
||||||
0,
|
2052,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -724,8 +724,8 @@ description: Operations executed bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3306,
|
||||||
0,
|
3455,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1510,9 +1510,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
529,
|
||||||
0,
|
562,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1622,9 +1622,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
859,
|
||||||
0,
|
892,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1710,9 +1710,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1214,
|
||||||
0,
|
1248,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1798,9 +1798,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1572,
|
||||||
0,
|
1606,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2362,9 +2362,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4067,
|
||||||
0,
|
4247,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2801,9 +2801,9 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4067,
|
||||||
0,
|
4247,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -3298,8 +3298,8 @@ description: Operations executed car-wheel-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
373,
|
||||||
0,
|
524,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed enclosure.kcl
|
description: Operations executed enclosure.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -130,8 +130,8 @@ description: Operations executed enclosure.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
740,
|
||||||
0,
|
1021,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -190,8 +190,8 @@ description: Operations executed enclosure.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1100,
|
||||||
0,
|
1170,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1699,8 +1699,8 @@ description: Operations executed enclosure.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3601,
|
||||||
0,
|
3882,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1997,8 +1997,8 @@ description: Operations executed enclosure.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5327,
|
||||||
0,
|
5608,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -338,8 +338,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1547,
|
||||||
0,
|
1570,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -682,8 +682,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1547,
|
||||||
0,
|
1570,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1026,8 +1026,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1547,
|
||||||
0,
|
1570,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1370,8 +1370,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1547,
|
||||||
0,
|
1570,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1744,8 +1744,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3933,
|
||||||
0,
|
3962,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1808,8 +1808,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3968,
|
||||||
0,
|
4101,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1872,8 +1872,8 @@ description: Operations executed exhaust-manifold.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4107,
|
||||||
0,
|
4240,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed flange-with-patterns.kcl
|
description: Operations executed flange-with-patterns.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -174,8 +174,8 @@ description: Operations executed flange-with-patterns.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1413,
|
||||||
0,
|
1444,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -461,8 +461,8 @@ description: Operations executed flange-with-patterns.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1928,
|
||||||
0,
|
1963,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -566,8 +566,8 @@ description: Operations executed flange-with-patterns.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2230,
|
||||||
0,
|
2264,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed flange-xy.kcl
|
description: Operations executed flange-xy.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -254,8 +254,8 @@ description: Operations executed flange-xy.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1555,
|
||||||
0,
|
1586,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -552,8 +552,8 @@ description: Operations executed flange-xy.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2077,
|
||||||
0,
|
2112,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -657,8 +657,8 @@ description: Operations executed flange-xy.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2379,
|
||||||
0,
|
2413,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -253,8 +253,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1831,
|
||||||
0,
|
1865,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -325,8 +325,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1871,
|
||||||
0,
|
2129,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -612,8 +612,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2875,
|
||||||
0,
|
2900,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -670,8 +670,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2906,
|
||||||
0,
|
3050,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -779,8 +779,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3056,
|
||||||
0,
|
3184,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1066,8 +1066,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3719,
|
||||||
0,
|
3744,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1124,8 +1124,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3750,
|
||||||
0,
|
3894,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1233,8 +1233,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3900,
|
||||||
0,
|
4028,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1476,8 +1476,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4458,
|
||||||
0,
|
4486,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1719,8 +1719,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4706,
|
||||||
0,
|
4734,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -323,8 +323,8 @@ description: Operations executed french-press.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2157,
|
||||||
0,
|
2179,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -500,8 +500,8 @@ description: Operations executed french-press.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2185,
|
||||||
0,
|
2340,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1293,8 +1293,8 @@ description: Operations executed french-press.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5053,
|
||||||
0,
|
5092,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed gear-rack.kcl
|
description: Operations executed gear-rack.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed gear-rack.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
731,
|
||||||
0,
|
754,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -147,8 +147,8 @@ description: Operations executed gear-rack.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1279,
|
||||||
0,
|
1302,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -265,8 +265,8 @@ description: Operations executed gear-rack.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1409,
|
||||||
0,
|
1508,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -332,8 +332,8 @@ description: Operations executed gear-rack.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1820,
|
||||||
0,
|
1843,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -399,8 +399,8 @@ description: Operations executed gear-rack.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2157,
|
||||||
0,
|
2180,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -5897,8 +5897,8 @@ description: Operations executed gear.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1405,
|
||||||
0,
|
1433,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -9802,8 +9802,8 @@ description: Operations executed gear.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2128,
|
||||||
0,
|
2156,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -9979,8 +9979,8 @@ description: Operations executed gear.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2162,
|
||||||
0,
|
2322,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -10097,8 +10097,8 @@ description: Operations executed gear.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3058,
|
||||||
0,
|
3087,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -919,8 +919,8 @@ description: Operations executed gridfinity-baseplate-magnets.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2243,
|
||||||
0,
|
2360,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1183,8 +1183,8 @@ description: Operations executed gridfinity-baseplate-magnets.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2584,
|
||||||
0,
|
2701,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2008,8 +2008,8 @@ description: Operations executed gridfinity-baseplate-magnets.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6613,
|
||||||
0,
|
6730,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2243,8 +2243,8 @@ description: Operations executed gridfinity-baseplate-magnets.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6933,
|
||||||
0,
|
7050,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -919,8 +919,8 @@ description: Operations executed gridfinity-baseplate.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2118,
|
||||||
0,
|
2235,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1183,8 +1183,8 @@ description: Operations executed gridfinity-baseplate.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2459,
|
||||||
0,
|
2576,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -722,8 +722,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2875,
|
||||||
0,
|
2899,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -794,8 +794,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2905,
|
||||||
0,
|
3134,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -885,8 +885,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3580,
|
||||||
0,
|
3607,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1137,8 +1137,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3813,
|
||||||
0,
|
3943,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1389,8 +1389,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4174,
|
||||||
0,
|
4304,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1612,8 +1612,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4529,
|
||||||
0,
|
4659,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1715,8 +1715,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5002,
|
||||||
0,
|
5046,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1787,8 +1787,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5052,
|
||||||
0,
|
5284,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1847,8 +1847,8 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5290,
|
||||||
0,
|
5332,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -722,8 +722,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2618,
|
||||||
0,
|
2642,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -794,8 +794,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2648,
|
||||||
0,
|
2877,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -885,8 +885,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3323,
|
||||||
0,
|
3350,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1137,8 +1137,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3556,
|
||||||
0,
|
3686,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1389,8 +1389,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3917,
|
||||||
0,
|
4047,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1612,8 +1612,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4272,
|
||||||
0,
|
4402,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1715,8 +1715,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4771,
|
||||||
0,
|
4815,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1787,8 +1787,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4821,
|
||||||
0,
|
5053,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1847,8 +1847,8 @@ description: Operations executed gridfinity-bins.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5059,
|
||||||
0,
|
5101,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed hex-nut.kcl
|
description: Operations executed hex-nut.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -118,8 +118,8 @@ description: Operations executed hex-nut.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1038,
|
||||||
0,
|
1059,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -66,8 +66,8 @@ description: Operations executed i-beam.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
652,
|
||||||
0,
|
680,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed kitt.kcl
|
description: Operations executed kitt.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
900,
|
||||||
0,
|
930,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -160,8 +160,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -243,8 +243,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2204,
|
||||||
0,
|
2235,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -339,8 +339,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -438,8 +438,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -537,8 +537,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -636,8 +636,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -719,8 +719,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3485,
|
||||||
0,
|
3514,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -815,8 +815,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -914,8 +914,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1013,8 +1013,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1112,8 +1112,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1211,8 +1211,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1310,8 +1310,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1409,8 +1409,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1508,8 +1508,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1607,8 +1607,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1706,8 +1706,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1805,8 +1805,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1904,8 +1904,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2003,8 +2003,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2185,8 +2185,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2370,8 +2370,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2489,8 +2489,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2588,8 +2588,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2687,8 +2687,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2786,8 +2786,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2905,8 +2905,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3004,8 +3004,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3103,8 +3103,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3202,8 +3202,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3305,8 +3305,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3405,8 +3405,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3505,8 +3505,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3605,8 +3605,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3705,8 +3705,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3805,8 +3805,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -3905,8 +3905,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -4005,8 +4005,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -4105,8 +4105,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -4205,8 +4205,8 @@ description: Operations executed kitt.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
449,
|
||||||
0,
|
472,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed lego.kcl
|
description: Operations executed lego.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed lego.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1780,
|
||||||
0,
|
1804,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -138,8 +138,8 @@ description: Operations executed lego.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2221,
|
||||||
0,
|
2252,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -262,8 +262,8 @@ description: Operations executed lego.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2687,
|
||||||
0,
|
2715,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -528,8 +528,8 @@ description: Operations executed lego.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3197,
|
||||||
0,
|
3226,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed mounting-plate.kcl
|
description: Operations executed mounting-plate.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -273,8 +273,8 @@ description: Operations executed mounting-plate.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1825,
|
||||||
0,
|
1857,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -345,8 +345,8 @@ description: Operations executed mounting-plate.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1863,
|
||||||
0,
|
2127,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed multi-axis-robot.kcl
|
description: Operations executed multi-axis-robot.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -212,9 +212,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
769,
|
||||||
0,
|
1045,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -352,9 +352,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1280,
|
||||||
0,
|
1362,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -923,9 +923,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
323,
|
||||||
0,
|
406,
|
||||||
0
|
4
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1340,9 +1340,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1143,
|
||||||
0,
|
1226,
|
||||||
0
|
4
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1685,9 +1685,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1996,
|
||||||
0,
|
2079,
|
||||||
0
|
4
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2341,9 +2341,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1033,
|
||||||
0,
|
1116,
|
||||||
0
|
5
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2519,9 +2519,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1415,
|
||||||
0,
|
1498,
|
||||||
0
|
5
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -3400,9 +3400,9 @@ description: Operations executed multi-axis-robot.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1299,
|
||||||
0,
|
1382,
|
||||||
0
|
6
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -247,8 +247,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5504,
|
||||||
0,
|
5535,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -410,8 +410,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
5838,
|
||||||
0,
|
5872,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -713,8 +713,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3177,
|
||||||
0,
|
3198,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -893,8 +893,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6049,
|
||||||
0,
|
6204,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1431,8 +1431,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6407,
|
||||||
0,
|
6562,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1857,8 +1857,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
6781,
|
||||||
0,
|
6936,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2160,8 +2160,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3177,
|
||||||
0,
|
3198,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2340,8 +2340,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
7426,
|
||||||
0,
|
7581,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2643,8 +2643,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4236,
|
||||||
0,
|
4258,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -2823,8 +2823,8 @@ description: Operations executed pipe-flange-assembly.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
7778,
|
||||||
0,
|
7933,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -209,8 +209,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1706,
|
||||||
0,
|
1743,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -452,8 +452,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2178,
|
||||||
0,
|
2209,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -532,8 +532,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2907,
|
||||||
0,
|
2938,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -775,8 +775,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3566,
|
||||||
0,
|
3597,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -856,8 +856,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3816,
|
||||||
0,
|
3847,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -930,8 +930,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4043,
|
||||||
0,
|
4093,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -1173,8 +1173,8 @@ description: Operations executed poopy-shoe.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
4597,
|
||||||
0,
|
4629,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sheet-metal-bracket.kcl
|
description: Operations executed sheet-metal-bracket.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1299,
|
||||||
0,
|
1325,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -124,8 +124,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1331,
|
||||||
0,
|
1410,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -184,8 +184,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1416,
|
||||||
0,
|
1502,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -244,8 +244,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1508,
|
||||||
0,
|
1594,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -304,8 +304,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1600,
|
||||||
0,
|
1679,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -364,8 +364,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1685,
|
||||||
0,
|
1771,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -424,8 +424,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1777,
|
||||||
0,
|
1856,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -484,8 +484,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1862,
|
||||||
0,
|
1942,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -544,8 +544,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1948,
|
||||||
0,
|
2035,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -687,8 +687,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2446,
|
||||||
0,
|
2473,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -751,8 +751,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2479,
|
||||||
0,
|
2608,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -894,8 +894,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
2976,
|
||||||
0,
|
3003,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -958,8 +958,8 @@ description: Operations executed sheet-metal-bracket.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
3009,
|
||||||
0,
|
3139,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -136,9 +136,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
564,
|
||||||
0,
|
794,
|
||||||
0
|
3
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2035,9 +2035,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
745,
|
||||||
0,
|
890,
|
||||||
0
|
8
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2227,9 +2227,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
745,
|
||||||
0,
|
890,
|
||||||
0
|
8
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2419,9 +2419,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
745,
|
||||||
0,
|
890,
|
||||||
0
|
8
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2611,9 +2611,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
745,
|
||||||
0,
|
890,
|
||||||
0
|
8
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -2923,9 +2923,9 @@ description: Operations executed walkie-talkie.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
891,
|
||||||
0,
|
1096,
|
||||||
0
|
6
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed kittycad_svg.kcl
|
description: Operations executed kittycad_svg.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed kittycad_svg.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
18347,
|
||||||
0,
|
18366,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed linear_pattern3d_a_pattern.kcl
|
description: Operations executed linear_pattern3d_a_pattern.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed linear_pattern3d_a_pattern.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
159,
|
||||||
0,
|
178,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed mike_stress_test.kcl
|
description: Operations executed mike_stress_test.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed mike_stress_test.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
77102,
|
||||||
0,
|
77121,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed neg_xz_plane.kcl
|
description: Operations executed neg_xz_plane.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed neg_xz_plane.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
151,
|
||||||
0,
|
174,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed parametric.kcl
|
description: Operations executed parametric.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed parametric.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
465,
|
||||||
0,
|
488,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -64,8 +64,8 @@ description: Operations executed parametric_with_tan_arc.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
622,
|
||||||
0,
|
645,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed pentagon_fillet_sugar.kcl
|
description: Operations executed pentagon_fillet_sugar.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed pentagon_fillet_sugar.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
379,
|
||||||
0,
|
411,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -164,8 +164,8 @@ description: Operations executed pentagon_fillet_sugar.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
612,
|
||||||
0,
|
640,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -229,8 +229,8 @@ description: Operations executed pentagon_fillet_sugar.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
646,
|
||||||
0,
|
773,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -329,8 +329,8 @@ description: Operations executed pentagon_fillet_sugar.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
812,
|
||||||
0,
|
840,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -394,8 +394,8 @@ description: Operations executed pentagon_fillet_sugar.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
846,
|
||||||
0,
|
973,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -93,8 +93,8 @@ description: Operations executed pipe_as_arg.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
367,
|
||||||
0,
|
391,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -209,8 +209,8 @@ description: Operations executed poop_chute.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1719,
|
||||||
0,
|
1757,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed riddle_small.kcl
|
description: Operations executed riddle_small.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -102,8 +102,8 @@ description: Operations executed riddle_small.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
287,
|
||||||
0,
|
306,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch-on-chamfer-two-times-different-order.kcl
|
description: Operations executed sketch-on-chamfer-two-times-different-order.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -125,8 +125,8 @@ description: Operations executed sketch-on-chamfer-two-times-different-order.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
492,
|
||||||
0,
|
527,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -196,8 +196,8 @@ description: Operations executed sketch-on-chamfer-two-times-different-order.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
533,
|
||||||
0,
|
600,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -268,8 +268,8 @@ description: Operations executed sketch-on-chamfer-two-times-different-order.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
606,
|
||||||
0,
|
656,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch-on-chamfer-two-times.kcl
|
description: Operations executed sketch-on-chamfer-two-times.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -125,8 +125,8 @@ description: Operations executed sketch-on-chamfer-two-times.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
492,
|
||||||
0,
|
527,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -197,8 +197,8 @@ description: Operations executed sketch-on-chamfer-two-times.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
533,
|
||||||
0,
|
583,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -268,8 +268,8 @@ description: Operations executed sketch-on-chamfer-two-times.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
589,
|
||||||
0,
|
656,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_in_object.kcl
|
description: Operations executed sketch_in_object.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -83,8 +83,8 @@ description: Operations executed sketch_in_object.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
425,
|
||||||
0,
|
446,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -169,8 +169,8 @@ description: Operations executed sketch_in_object.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
483,
|
||||||
0,
|
503,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face.kcl
|
description: Operations executed sketch_on_face.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed sketch_on_face.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
200,
|
||||||
0,
|
219,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -145,8 +145,8 @@ description: Operations executed sketch_on_face.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
386,
|
||||||
0,
|
405,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face_after_fillets_referencing_face.kcl
|
description: Operations executed sketch_on_face_after_fillets_referencing_face.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed sketch_on_face_after_fillets_referencing_face.k
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1305,
|
||||||
0,
|
1328,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -124,8 +124,8 @@ description: Operations executed sketch_on_face_after_fillets_referencing_face.k
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1334,
|
||||||
0,
|
1399,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -178,8 +178,8 @@ description: Operations executed sketch_on_face_after_fillets_referencing_face.k
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1405,
|
||||||
0,
|
1482,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -259,8 +259,8 @@ description: Operations executed sketch_on_face_after_fillets_referencing_face.k
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
1737,
|
||||||
0,
|
1757,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face_circle_tagged.kcl
|
description: Operations executed sketch_on_face_circle_tagged.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -83,8 +83,8 @@ description: Operations executed sketch_on_face_circle_tagged.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
231,
|
||||||
0,
|
251,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -163,8 +163,8 @@ description: Operations executed sketch_on_face_circle_tagged.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
356,
|
||||||
0,
|
375,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face_end.kcl
|
description: Operations executed sketch_on_face_end.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -83,8 +83,8 @@ description: Operations executed sketch_on_face_end.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
231,
|
||||||
0,
|
251,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -163,8 +163,8 @@ description: Operations executed sketch_on_face_end.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
419,
|
||||||
0,
|
438,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face_end_negative_extrude.kcl
|
description: Operations executed sketch_on_face_end_negative_extrude.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -83,8 +83,8 @@ description: Operations executed sketch_on_face_end_negative_extrude.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
231,
|
||||||
0,
|
251,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -163,8 +163,8 @@ description: Operations executed sketch_on_face_end_negative_extrude.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
419,
|
||||||
0,
|
439,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed sketch_on_face_start.kcl
|
description: Operations executed sketch_on_face_start.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -83,8 +83,8 @@ description: Operations executed sketch_on_face_start.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
231,
|
||||||
0,
|
251,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -163,8 +163,8 @@ description: Operations executed sketch_on_face_start.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
424,
|
||||||
0,
|
443,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -234,8 +234,8 @@ description: Operations executed ssi_pattern.kcl
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
616,
|
||||||
0,
|
637,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -64,8 +64,8 @@ description: Operations executed tangential_arc.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
168,
|
||||||
0,
|
188,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
source: kcl/src/simulation_tests.rs
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
description: Operations executed xz_plane.kcl
|
description: Operations executed xz_plane.kcl
|
||||||
---
|
---
|
||||||
[
|
[
|
||||||
@ -64,8 +64,8 @@ description: Operations executed xz_plane.kcl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sourceRange": [
|
"sourceRange": [
|
||||||
0,
|
150,
|
||||||
0,
|
173,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user